Skip to content

Commit

Permalink
Migrated to GitHub organization and GHCR registry
Browse files Browse the repository at this point in the history
  • Loading branch information
mmontes11 committed Mar 18, 2023
1 parent 3e3b8f0 commit a60b4c8
Show file tree
Hide file tree
Showing 73 changed files with 200 additions and 199 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/helm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,9 +79,9 @@ jobs:
CR_RELEASE_NAME_TEMPLATE: "helm-chart-{{ .Version }}"
with:
charts_dir: deploy/charts
charts_repo_url: https://mmontes11.github.io/mariadb-operator
charts_repo_url: https://mariadb-operator.github.io/mariadb-operator

- name: Dispatch helm workflow
run: gh workflow run bundle.yaml --repo mmontes11/mariadb-operator-helm -f version=$(make helm-chart-version)
run: gh workflow run bundle.yaml --repo mariadb-operator/mariadb-operator-helm -f version=$(make helm-chart-version)
env:
GITHUB_TOKEN: "${{ secrets.GHA_TOKEN }}"
9 changes: 5 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,9 @@ jobs:
- name: Login to Docker Hub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
registry: ghcr.io

- name: Prepare
id: prep
Expand All @@ -59,8 +60,8 @@ jobs:
file: ./Dockerfile
platforms: linux/arm64,linux/amd64
tags: |
docker.io/mmontes11/mariadb-operator:${{ steps.prep.outputs.VERSION }}
docker.io/mmontes11/mariadb-operator:latest
ghcr.io/${{ github.repository_owner }}/mariadb-operator:${{ steps.prep.outputs.VERSION }}
ghcr.io/${{ github.repository_owner }}/mariadb-operator:latest
labels: |
org.opencontainers.image.title=${{ github.event.repository.name }}
org.opencontainers.image.description=${{ github.event.repository.description }}
Expand Down
18 changes: 9 additions & 9 deletions PROJECT
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ domain: mmontes.io
layout:
- go.kubebuilder.io/v3
projectName: mariadb-operator
repo: github.com/mmontes11/mariadb-operator
repo: github.com/mariadb-operator/mariadb-operator
resources:
- api:
crdVersion: v1
Expand All @@ -11,7 +11,7 @@ resources:
domain: mmontes.io
group: mariadb
kind: MariaDB
path: github.com/mmontes11/mariadb-operator/api/v1alpha1
path: github.com/mariadb-operator/mariadb-operator/api/v1alpha1
version: v1alpha1
webhooks:
validation: true
Expand All @@ -23,7 +23,7 @@ resources:
domain: mmontes.io
group: mariadb
kind: Backup
path: github.com/mmontes11/mariadb-operator/api/v1alpha1
path: github.com/mariadb-operator/mariadb-operator/api/v1alpha1
version: v1alpha1
webhooks:
validation: true
Expand All @@ -35,7 +35,7 @@ resources:
domain: mmontes.io
group: mariadb
kind: Restore
path: github.com/mmontes11/mariadb-operator/api/v1alpha1
path: github.com/mariadb-operator/mariadb-operator/api/v1alpha1
version: v1alpha1
webhooks:
validation: true
Expand All @@ -47,7 +47,7 @@ resources:
domain: mmontes.io
group: mariadb
kind: User
path: github.com/mmontes11/mariadb-operator/api/v1alpha1
path: github.com/mariadb-operator/mariadb-operator/api/v1alpha1
version: v1alpha1
webhooks:
validation: true
Expand All @@ -59,7 +59,7 @@ resources:
domain: mmontes.io
group: mariadb
kind: Grant
path: github.com/mmontes11/mariadb-operator/api/v1alpha1
path: github.com/mariadb-operator/mariadb-operator/api/v1alpha1
version: v1alpha1
webhooks:
validation: true
Expand All @@ -71,7 +71,7 @@ resources:
domain: mmontes.io
group: mariadb
kind: Database
path: github.com/mmontes11/mariadb-operator/api/v1alpha1
path: github.com/mariadb-operator/mariadb-operator/api/v1alpha1
version: v1alpha1
webhooks:
validation: true
Expand All @@ -83,7 +83,7 @@ resources:
domain: mmontes.io
group: mariadb
kind: Connection
path: github.com/mmontes11/mariadb-operator/api/v1alpha1
path: github.com/mariadb-operator/mariadb-operator/api/v1alpha1
version: v1alpha1
webhooks:
validation: true
Expand All @@ -95,7 +95,7 @@ resources:
domain: mmontes.io
group: mariadb
kind: SqlJob
path: github.com/mmontes11/mariadb-operator/api/v1alpha1
path: github.com/mariadb-operator/mariadb-operator/api/v1alpha1
version: v1alpha1
webhooks:
validation: true
Expand Down
22 changes: 11 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
<p align="center">
<img src="https://mmontes11.github.io/mariadb-operator/assets/mariadb-operator.png" alt="mariadb" width="250"/>
<img src="https://mariadb-operator.github.io/mariadb-operator/assets/mariadb-operator.png" alt="mariadb" width="250"/>
</p>

<p align="center">
<a href="https://github.com/mmontes11/mariadb-operator/actions/workflows/ci.yml"><img src="https://github.com/mmontes11/mariadb-operator/actions/workflows/ci.yml/badge.svg" alt="CI"></a>
<a href="https://github.com/mmontes11/mariadb-operator/actions/workflows/helm.yml"><img src="https://github.com/mmontes11/mariadb-operator/actions/workflows/helm.yml/badge.svg" alt="Helm"></a>
<a href="https://github.com/mmontes11/mariadb-operator/actions/workflows/release.yml"><img src="https://github.com/mmontes11/mariadb-operator/actions/workflows/release.yml/badge.svg" alt="Release"></a>
<a href="https://goreportcard.com/report/github.com/mmontes11/mariadb-operator"><img src="https://goreportcard.com/badge/github.com/mmontes11/mariadb-operator" alt="Go Report Card"></a>
<a href="https://pkg.go.dev/github.com/mmontes11/mariadb-operator"><img src="https://pkg.go.dev/badge/github.com/mmontes11/mariadb-operator.svg" alt="Go Reference"></a>
<a href="https://github.com/mariadb-operator/mariadb-operator/actions/workflows/ci.yml"><img src="https://github.com/mariadb-operator/mariadb-operator/actions/workflows/ci.yml/badge.svg" alt="CI"></a>
<a href="https://github.com/mariadb-operator/mariadb-operator/actions/workflows/helm.yml"><img src="https://github.com/mariadb-operator/mariadb-operator/actions/workflows/helm.yml/badge.svg" alt="Helm"></a>
<a href="https://github.com/mariadb-operator/mariadb-operator/actions/workflows/release.yml"><img src="https://github.com/mariadb-operator/mariadb-operator/actions/workflows/release.yml/badge.svg" alt="Release"></a>
<a href="https://goreportcard.com/report/github.com/mariadb-operator/mariadb-operator"><img src="https://goreportcard.com/badge/github.com/mariadb-operator/mariadb-operator" alt="Go Report Card"></a>
<a href="https://pkg.go.dev/github.com/mariadb-operator/mariadb-operator"><img src="https://pkg.go.dev/badge/github.com/mariadb-operator/mariadb-operator.svg" alt="Go Reference"></a>
</p>

<p align="center">
Expand All @@ -31,15 +31,15 @@ Run and operate MariaDB in a cloud native way. Declaratively manage your MariaDB
- Additional printer columns to report the current CRD status
- CRDs designed according to the Kubernetes [API conventions](https://github.com/kubernetes/community/blob/master/contributors/devel/sig-architecture/api-conventions.md)
- [GitOps](https://opengitops.dev/) friendly
- Multi-arch [docker](https://hub.docker.com/repository/docker/mmontes11/mariadb-operator/tags?page=1&ordering=last_updated) image
- Multi-arch [docker](https://github.com/orgs/mariadb-operator/packages/container/package/mariadb-operator) image
- Install it using [kubectl](./deploy/manifests), [helm](https://artifacthub.io/packages/helm/mariadb-operator/mariadb-operator) or [OLM](https://operatorhub.io/operator/mariadb-operator)

## Bare minimum installation

This installation flavour provides the minimum resources required to run `mariadb-operator` in your cluster.

```bash
helm repo add mariadb-operator https://mmontes11.github.io/mariadb-operator
helm repo add mariadb-operator https://mariadb-operator.github.io/mariadb-operator
helm install mariadb-operator mariadb-operator/mariadb-operator
```

Expand All @@ -50,14 +50,14 @@ The recommended installation includes the following features to provide a better
- **Webhook certificate renewal**: Automatic webhook certificate issuance and renewal using [cert-manager](https://cert-manager.io/docs/installation/). By default, a static self-signed certificate is generated.

```bash
helm repo add mariadb-operator https://mmontes11.github.io/mariadb-operator
helm repo add mariadb-operator https://mariadb-operator.github.io/mariadb-operator
helm install mariadb-operator mariadb-operator/mariadb-operator \
--set metrics.enabled=true --set webhook.certificate.certManager=true
```

## Openshift

The Openshift installation is managed separately in the [mariadb-operator-helm](https://github.com/mmontes11/mariadb-operator-helm) repository, which contains a [helm based operator](https://sdk.operatorframework.io/docs/building-operators/helm/) that allows you to install `mariadb-operator` via [OLM](https://olm.operatorframework.io/docs/).
The Openshift installation is managed separately in the [mariadb-operator-helm](https://github.com/mariadb-operator/mariadb-operator-helm) repository, which contains a [helm based operator](https://sdk.operatorframework.io/docs/building-operators/helm/) that allows you to install `mariadb-operator` via [OLM](https://olm.operatorframework.io/docs/).

## Quickstart

Expand Down Expand Up @@ -175,4 +175,4 @@ Take a look at our [🛣️ roadmap](./ROADMAP.md) and feel free to open an issu

## Contributing

If you want to report a 🐛 or you think something can be improved, please check our [contributing](./CONTRIBUTING.md) guide and take a look at our open [issues](https://github.com/mmontes11/mariadb-operator/issues). PRs are welcome!
If you want to report a 🐛 or you think something can be improved, please check our [contributing](./CONTRIBUTING.md) guide and take a look at our open [issues](https://github.com/mariadb-operator/mariadb-operator/issues). PRs are welcome!
18 changes: 9 additions & 9 deletions ROADMAP.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
# 🛣️ Roadmap

- ~~Improve and fully automate the CI/CD to ensure the quality of the artifacts. Become a serious open source project in this matter.~~
- ~~Leveraging the previous automation, support deploying the operator using the [openshift OLM](https://docs.openshift.com/container-platform/4.8/operators/understanding/olm/olm-understanding-olm.html).: https://github.com/mmontes11/mariadb-operator/issues/10~~
- ~~COMMUNITY REQUEST - Support for custom `my.cnf`: https://github.com/mmontes11/mariadb-operator/issues/51~~
- ~~COMMUNITY REQUEST - Support for db initialization scripts: https://github.com/mmontes11/mariadb-operator/issues/47~~
- High availability support via [replication](https://mariadb.org/mariadb-k8s-how-to-replicate-mariadb-in-k8s/): https://github.com/mmontes11/mariadb-operator/issues/61
- Abstract both [mysqldump](https://dev.mysql.com/doc/refman/8.0/en/mysqldump.html) and [mariabackup](https://mariadb.com/kb/en/mariabackup-overview/) in an easy to use CLI: `mariactl`. The binary will be released along with the operator in the new CI/CD: https://github.com/mmontes11/mariadb-operator/issues/16
- Making use of `mariactl`, abstract the most relevant features of `mariabackup` via Kubernetes CRDs, such as incremental backups: https://github.com/mmontes11/mariadb-operator/issues/17
- The operator has recently been refactored to easily support new storage types for the backups. The next one to be supported will be S3: https://github.com/mmontes11/mariadb-operator/issues/6
- Create a documentation site hosted in GitHub Pages, something like [this](https://gateway-api.sigs.k8s.io/). It would be generated from markdown by the new CI/CD: https://github.com/mmontes11/mariadb-operator/issues/21
- High availability support via [Galera](https://mariadb.com/kb/en/what-is-mariadb-galera-cluster/): https://github.com/mmontes11/mariadb-operator/issues/4
- ~~Leveraging the previous automation, support deploying the operator using the [openshift OLM](https://docs.openshift.com/container-platform/4.8/operators/understanding/olm/olm-understanding-olm.html).: https://github.com/mariadb-operator/mariadb-operator/issues/10~~
- ~~COMMUNITY REQUEST - Support for custom `my.cnf`: https://github.com/mariadb-operator/mariadb-operator/issues/51~~
- ~~COMMUNITY REQUEST - Support for db initialization scripts: https://github.com/mariadb-operator/mariadb-operator/issues/47~~
- High availability support via [replication](https://mariadb.org/mariadb-k8s-how-to-replicate-mariadb-in-k8s/): https://github.com/mariadb-operator/mariadb-operator/issues/61
- Abstract both [mysqldump](https://dev.mysql.com/doc/refman/8.0/en/mysqldump.html) and [mariabackup](https://mariadb.com/kb/en/mariabackup-overview/) in an easy to use CLI: `mariactl`. The binary will be released along with the operator in the new CI/CD: https://github.com/mariadb-operator/mariadb-operator/issues/16
- Making use of `mariactl`, abstract the most relevant features of `mariabackup` via Kubernetes CRDs, such as incremental backups: https://github.com/mariadb-operator/mariadb-operator/issues/17
- The operator has recently been refactored to easily support new storage types for the backups. The next one to be supported will be S3: https://github.com/mariadb-operator/mariadb-operator/issues/6
- Create a documentation site hosted in GitHub Pages, something like [this](https://gateway-api.sigs.k8s.io/). It would be generated from markdown by the new CI/CD: https://github.com/mariadb-operator/mariadb-operator/issues/21
- High availability support via [Galera](https://mariadb.com/kb/en/what-is-mariadb-galera-cluster/): https://github.com/mariadb-operator/mariadb-operator/issues/4
4 changes: 2 additions & 2 deletions api/v1alpha1/backup_webhook_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ var _ = Describe("Backup webhook", func() {
It("Should validate", func() {
storageClassName := "standard"
// TODO: migrate to Ginkgo v2 and use Ginkgo table tests
// https://github.com/mmontes11/mariadb-operator/issues/3
// https://github.com/mariadb-operator/mariadb-operator/issues/3
tt := []struct {
by string
backup Backup
Expand Down Expand Up @@ -203,7 +203,7 @@ var _ = Describe("Backup webhook", func() {
Expect(k8sClient.Create(testCtx, &backup)).To(Succeed())

// TODO: migrate to Ginkgo v2 and use Ginkgo table tests
// https://github.com/mmontes11/mariadb-operator/issues/3
// https://github.com/mariadb-operator/mariadb-operator/issues/3
tt := []struct {
by string
patchFn func(mdb *Backup)
Expand Down
2 changes: 1 addition & 1 deletion api/v1alpha1/common_types.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"errors"
"fmt"

"github.com/mmontes11/mariadb-operator/pkg/webhook"
"github.com/mariadb-operator/mariadb-operator/pkg/webhook"
corev1 "k8s.io/api/core/v1"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
)
Expand Down
2 changes: 1 addition & 1 deletion api/v1alpha1/connection_webhook_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ var _ = Describe("Connection webhook", func() {
Expect(k8sClient.Create(testCtx, &conn)).To(Succeed())

// TODO: migrate to Ginkgo v2 and use Ginkgo table tests
// https://github.com/mmontes11/mariadb-operator/issues/3
// https://github.com/mariadb-operator/mariadb-operator/issues/3
tt := []struct {
by string
patchFn func(conn *Connection)
Expand Down
2 changes: 1 addition & 1 deletion api/v1alpha1/database_webhook_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ var _ = Describe("Database webhook", func() {
Expect(k8sClient.Create(testCtx, &database)).To(Succeed())

// TODO: migrate to Ginkgo v2 and use Ginkgo table tests
// https://github.com/mmontes11/mariadb-operator/issues/3
// https://github.com/mariadb-operator/mariadb-operator/issues/3
tt := []struct {
by string
patchFn func(mdb *Database)
Expand Down
2 changes: 1 addition & 1 deletion api/v1alpha1/grant_webhook_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ var _ = Describe("Grant webhook", func() {
Expect(k8sClient.Create(testCtx, &grant)).To(Succeed())

// TODO: migrate to Ginkgo v2 and use Ginkgo table tests
// https://github.com/mmontes11/mariadb-operator/issues/3
// https://github.com/mariadb-operator/mariadb-operator/issues/3
tt := []struct {
by string
patchFn func(mdb *Grant)
Expand Down
4 changes: 2 additions & 2 deletions api/v1alpha1/mariadb_webhook_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ var _ = Describe("MariaDB webhook", func() {
Namespace: testNamespace,
}
// TODO: migrate to Ginkgo v2 and use Ginkgo table tests
// https://github.com/mmontes11/mariadb-operator/issues/3
// https://github.com/mariadb-operator/mariadb-operator/issues/3
tt := []struct {
by string
mdb MariaDB
Expand Down Expand Up @@ -181,7 +181,7 @@ var _ = Describe("MariaDB webhook", func() {
Expect(k8sClient.Create(testCtx, &mariaDb)).To(Succeed())

// TODO: migrate to Ginkgo v2 and use Ginkgo table tests
// https://github.com/mmontes11/mariadb-operator/issues/3
// https://github.com/mariadb-operator/mariadb-operator/issues/3
tt := []struct {
by string
patchFn func(mdb *MariaDB)
Expand Down
4 changes: 2 additions & 2 deletions api/v1alpha1/restore_webhook_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ var _ = Describe("Restore webhook", func() {
Context("When creating a Restore", func() {
It("Should validate", func() {
// TODO: migrate to Ginkgo v2 and use Ginkgo table tests
// https://github.com/mmontes11/mariadb-operator/issues/3
// https://github.com/mariadb-operator/mariadb-operator/issues/3
tt := []struct {
by string
restore Restore
Expand Down Expand Up @@ -211,7 +211,7 @@ var _ = Describe("Restore webhook", func() {
Expect(k8sClient.Create(testCtx, &restore)).To(Succeed())

// TODO: migrate to Ginkgo v2 and use Ginkgo table tests
// https://github.com/mmontes11/mariadb-operator/issues/3
// https://github.com/mariadb-operator/mariadb-operator/issues/3
tt := []struct {
by string
patchFn func(mdb *Restore)
Expand Down
2 changes: 1 addition & 1 deletion api/v1alpha1/user_webhook _test.go
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ var _ = Describe("User webhook", func() {
Expect(k8sClient.Create(testCtx, &initialUser)).To(Succeed())

// TODO: migrate to Ginkgo v2 and use Ginkgo table tests
// https://github.com/mmontes11/mariadb-operator/issues/3
// https://github.com/mariadb-operator/mariadb-operator/issues/3
tt := []struct {
by string
patchFn func(mdb *User)
Expand Down
14 changes: 7 additions & 7 deletions cmd/controller/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,13 @@ package controller
import (
"os"

mariadbv1alpha1 "github.com/mmontes11/mariadb-operator/api/v1alpha1"
"github.com/mmontes11/mariadb-operator/controllers"
"github.com/mmontes11/mariadb-operator/pkg/builder"
"github.com/mmontes11/mariadb-operator/pkg/conditions"
"github.com/mmontes11/mariadb-operator/pkg/controller/batch"
"github.com/mmontes11/mariadb-operator/pkg/controller/configmap"
"github.com/mmontes11/mariadb-operator/pkg/refresolver"
mariadbv1alpha1 "github.com/mariadb-operator/mariadb-operator/api/v1alpha1"
"github.com/mariadb-operator/mariadb-operator/controllers"
"github.com/mariadb-operator/mariadb-operator/pkg/builder"
"github.com/mariadb-operator/mariadb-operator/pkg/conditions"
"github.com/mariadb-operator/mariadb-operator/pkg/controller/batch"
"github.com/mariadb-operator/mariadb-operator/pkg/controller/configmap"
"github.com/mariadb-operator/mariadb-operator/pkg/refresolver"
monitoringv1 "github.com/prometheus-operator/prometheus-operator/pkg/apis/monitoring/v1"
"github.com/spf13/cobra"
"go.uber.org/zap/zapcore"
Expand Down
2 changes: 1 addition & 1 deletion cmd/controller/webhook.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ package controller
import (
"os"

mariadbv1alpha1 "github.com/mmontes11/mariadb-operator/api/v1alpha1"
mariadbv1alpha1 "github.com/mariadb-operator/mariadb-operator/api/v1alpha1"
"github.com/spf13/cobra"
ctrl "sigs.k8s.io/controller-runtime"
"sigs.k8s.io/controller-runtime/pkg/healthz"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@ spec:
key: password
database: mariadb
sql: |
INSERT INTO users(username, email) VALUES('mmontes11','[email protected]')
INSERT INTO users(username, email) VALUES('mmontes11','[email protected]')
ON DUPLICATE KEY UPDATE username='mmontes11';
10 changes: 5 additions & 5 deletions controllers/backup_controller.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,11 @@ import (
"time"

"github.com/hashicorp/go-multierror"
mariadbv1alpha1 "github.com/mmontes11/mariadb-operator/api/v1alpha1"
"github.com/mmontes11/mariadb-operator/pkg/builder"
"github.com/mmontes11/mariadb-operator/pkg/conditions"
"github.com/mmontes11/mariadb-operator/pkg/controller/batch"
"github.com/mmontes11/mariadb-operator/pkg/refresolver"
mariadbv1alpha1 "github.com/mariadb-operator/mariadb-operator/api/v1alpha1"
"github.com/mariadb-operator/mariadb-operator/pkg/builder"
"github.com/mariadb-operator/mariadb-operator/pkg/conditions"
"github.com/mariadb-operator/mariadb-operator/pkg/controller/batch"
"github.com/mariadb-operator/mariadb-operator/pkg/refresolver"
batchv1 "k8s.io/api/batch/v1"
apierrors "k8s.io/apimachinery/pkg/api/errors"
"k8s.io/apimachinery/pkg/runtime"
Expand Down
2 changes: 1 addition & 1 deletion controllers/backup_controller_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ limitations under the License.
package controllers

import (
mariadbv1alpha1 "github.com/mmontes11/mariadb-operator/api/v1alpha1"
mariadbv1alpha1 "github.com/mariadb-operator/mariadb-operator/api/v1alpha1"
. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"
batchv1 "k8s.io/api/batch/v1"
Expand Down
Loading

0 comments on commit a60b4c8

Please sign in to comment.