You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 24, 2023. It is now read-only.
An Operator that installs Gitea. Installation is performed by creating a custom resource of kind Gitea. You can uninstall Gitea by removing this resource.
The Operator will also watch all Gitea resources and reinstall them if they are deleted.
Installing the Operator
First we need to create a Service Account, Role and Role Binding in order to grant the required permissions to the Operator. The install target of the Makefile will take care of this. Make sure you are logged in with a user that has permission to create those resources.
$ oc login -u system:admin
$ ORG=<registry url> make image/build
$ ORG=<registry url> make image/push
$ make cluster/prepare
Then review deploy/operator.yaml and update the image url to your preferred registry and deploy it:
$ make cluster/deploy
Verify the Operator is running by opening the gitea namespace. You should see a Pod with the name gitea-operator.
Running the Operator locally
Instead of pulling the operator image from a registry and installing it in your namespace you can also run the Operator locally. This is especially useful for development:
$ oc login -u system:admin
$ make cluster/prepare
$ make code/run
Installing Gitea
Create a custom resource of type Gitea with the following spec: