├── .gitignore ├── Dockerfile ├── Makefile ├── OLMDeploy ├── catalogsource.yaml ├── kustomization.yaml ├── namespace.yaml ├── operatorgroup.yaml └── subscription.yaml ├── PROJECT ├── README.adoc ├── bundle.Dockerfile ├── bundle ├── manifests │ ├── gitea-operator-controller-manager-metrics-service_v1_service.yaml │ ├── gitea-operator-gitea-editor-role_rbac.authorization.k8s.io_v1_clusterrole.yaml │ ├── gitea-operator-gitea-viewer-role_rbac.authorization.k8s.io_v1_clusterrole.yaml │ ├── gitea-operator-metrics-reader_rbac.authorization.k8s.io_v1_clusterrole.yaml │ ├── gitea-operator.clusterserviceversion.yaml │ └── pfe.rhpds.com_gitea.yaml ├── metadata │ └── annotations.yaml └── tests │ └── scorecard │ └── config.yaml ├── catalog_source.yaml ├── config ├── crd │ ├── bases │ │ └── pfe.rhpds.com_gitea.yaml │ ├── kustomization.yaml │ └── patches │ │ └── crd_openapi.yaml ├── default │ ├── kustomization.yaml │ ├── manager_metrics_patch.yaml │ └── metrics_service.yaml ├── manager │ ├── kustomization.yaml │ └── manager.yaml ├── manifests │ ├── bases │ │ └── gitea-operator.clusterserviceversion.yaml │ ├── kustomization.yaml │ └── patches │ │ └── csv.yaml ├── network-policy │ ├── allow-metrics-traffic.yaml │ └── kustomization.yaml ├── prometheus │ ├── kustomization.yaml │ └── monitor.yaml ├── rbac │ ├── gitea_editor_role.yaml │ ├── gitea_viewer_role.yaml │ ├── kustomization.yaml │ ├── leader_election_role.yaml │ ├── leader_election_role_binding.yaml │ ├── metrics_auth_role.yaml │ ├── metrics_auth_role_binding.yaml │ ├── metrics_reader_role.yaml │ ├── role.yaml │ ├── role_binding.yaml │ └── service_account.yaml ├── samples │ ├── gitea-server.yaml │ ├── kustomization.yaml │ └── pfe_v1_gitea.yaml ├── scorecard │ ├── bases │ │ └── config.yaml │ ├── kustomization.yaml │ └── patches │ │ ├── basic.config.yaml │ │ └── olm.config.yaml └── testing │ ├── debug_logs_patch.yaml │ ├── kustomization.yaml │ ├── manager_image.yaml │ └── pull_policy │ ├── Always.yaml │ ├── IfNotPresent.yaml │ └── Never.yaml ├── gitea-base64.svg ├── gitea-catalog.Dockerfile ├── gitea-catalog └── index.yaml ├── molecule ├── default │ ├── converge.yml │ ├── create.yml │ ├── destroy.yml │ ├── kustomize.yml │ ├── molecule.yml │ ├── prepare.yml │ ├── tasks │ │ └── gitea_test.yml │ └── verify.yml └── kind │ ├── converge.yml │ ├── create.yml │ ├── destroy.yml │ └── molecule.yml ├── playbooks └── gitea.yml ├── requirements.yml ├── roles ├── gitea-ocp │ ├── README.adoc │ ├── defaults │ │ └── main.yml │ ├── meta │ │ └── main.yml │ ├── tasks │ │ ├── create_user.yml │ │ ├── main.yml │ │ └── migrate_repos.yml │ ├── templates │ │ ├── configmap.yaml.j2 │ │ ├── deployment.yaml.j2 │ │ ├── persistentvolumeclaim.yaml.j2 │ │ ├── route.yaml.j2 │ │ ├── service.yaml.j2 │ │ └── serviceaccount.yaml.j2 │ └── vars │ │ └── main.yml └── postgresql-ocp │ ├── README.adoc │ ├── defaults │ └── main.yml │ ├── meta │ └── main.yml │ ├── tasks │ └── main.yml │ └── templates │ ├── deployment.yaml.j2 │ ├── persistentvolumeclaim.yaml.j2 │ ├── secret.yaml.j2 │ └── service.yaml.j2 └── watches.yaml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhpds/gitea-operator/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhpds/gitea-operator/HEAD/Dockerfile -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhpds/gitea-operator/HEAD/Makefile -------------------------------------------------------------------------------- /OLMDeploy/catalogsource.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhpds/gitea-operator/HEAD/OLMDeploy/catalogsource.yaml -------------------------------------------------------------------------------- /OLMDeploy/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhpds/gitea-operator/HEAD/OLMDeploy/kustomization.yaml -------------------------------------------------------------------------------- /OLMDeploy/namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhpds/gitea-operator/HEAD/OLMDeploy/namespace.yaml -------------------------------------------------------------------------------- /OLMDeploy/operatorgroup.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhpds/gitea-operator/HEAD/OLMDeploy/operatorgroup.yaml -------------------------------------------------------------------------------- /OLMDeploy/subscription.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhpds/gitea-operator/HEAD/OLMDeploy/subscription.yaml -------------------------------------------------------------------------------- /PROJECT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhpds/gitea-operator/HEAD/PROJECT -------------------------------------------------------------------------------- /README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhpds/gitea-operator/HEAD/README.adoc -------------------------------------------------------------------------------- /bundle.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhpds/gitea-operator/HEAD/bundle.Dockerfile -------------------------------------------------------------------------------- /bundle/manifests/gitea-operator-controller-manager-metrics-service_v1_service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhpds/gitea-operator/HEAD/bundle/manifests/gitea-operator-controller-manager-metrics-service_v1_service.yaml -------------------------------------------------------------------------------- /bundle/manifests/gitea-operator-gitea-editor-role_rbac.authorization.k8s.io_v1_clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhpds/gitea-operator/HEAD/bundle/manifests/gitea-operator-gitea-editor-role_rbac.authorization.k8s.io_v1_clusterrole.yaml -------------------------------------------------------------------------------- /bundle/manifests/gitea-operator-gitea-viewer-role_rbac.authorization.k8s.io_v1_clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhpds/gitea-operator/HEAD/bundle/manifests/gitea-operator-gitea-viewer-role_rbac.authorization.k8s.io_v1_clusterrole.yaml -------------------------------------------------------------------------------- /bundle/manifests/gitea-operator-metrics-reader_rbac.authorization.k8s.io_v1_clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhpds/gitea-operator/HEAD/bundle/manifests/gitea-operator-metrics-reader_rbac.authorization.k8s.io_v1_clusterrole.yaml -------------------------------------------------------------------------------- /bundle/manifests/gitea-operator.clusterserviceversion.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhpds/gitea-operator/HEAD/bundle/manifests/gitea-operator.clusterserviceversion.yaml -------------------------------------------------------------------------------- /bundle/manifests/pfe.rhpds.com_gitea.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhpds/gitea-operator/HEAD/bundle/manifests/pfe.rhpds.com_gitea.yaml -------------------------------------------------------------------------------- /bundle/metadata/annotations.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhpds/gitea-operator/HEAD/bundle/metadata/annotations.yaml -------------------------------------------------------------------------------- /bundle/tests/scorecard/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhpds/gitea-operator/HEAD/bundle/tests/scorecard/config.yaml -------------------------------------------------------------------------------- /catalog_source.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhpds/gitea-operator/HEAD/catalog_source.yaml -------------------------------------------------------------------------------- /config/crd/bases/pfe.rhpds.com_gitea.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhpds/gitea-operator/HEAD/config/crd/bases/pfe.rhpds.com_gitea.yaml -------------------------------------------------------------------------------- /config/crd/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhpds/gitea-operator/HEAD/config/crd/kustomization.yaml -------------------------------------------------------------------------------- /config/crd/patches/crd_openapi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhpds/gitea-operator/HEAD/config/crd/patches/crd_openapi.yaml -------------------------------------------------------------------------------- /config/default/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhpds/gitea-operator/HEAD/config/default/kustomization.yaml -------------------------------------------------------------------------------- /config/default/manager_metrics_patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhpds/gitea-operator/HEAD/config/default/manager_metrics_patch.yaml -------------------------------------------------------------------------------- /config/default/metrics_service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhpds/gitea-operator/HEAD/config/default/metrics_service.yaml -------------------------------------------------------------------------------- /config/manager/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhpds/gitea-operator/HEAD/config/manager/kustomization.yaml -------------------------------------------------------------------------------- /config/manager/manager.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhpds/gitea-operator/HEAD/config/manager/manager.yaml -------------------------------------------------------------------------------- /config/manifests/bases/gitea-operator.clusterserviceversion.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhpds/gitea-operator/HEAD/config/manifests/bases/gitea-operator.clusterserviceversion.yaml -------------------------------------------------------------------------------- /config/manifests/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhpds/gitea-operator/HEAD/config/manifests/kustomization.yaml -------------------------------------------------------------------------------- /config/manifests/patches/csv.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhpds/gitea-operator/HEAD/config/manifests/patches/csv.yaml -------------------------------------------------------------------------------- /config/network-policy/allow-metrics-traffic.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhpds/gitea-operator/HEAD/config/network-policy/allow-metrics-traffic.yaml -------------------------------------------------------------------------------- /config/network-policy/kustomization.yaml: -------------------------------------------------------------------------------- 1 | resources: 2 | - allow-metrics-traffic.yaml 3 | -------------------------------------------------------------------------------- /config/prometheus/kustomization.yaml: -------------------------------------------------------------------------------- 1 | resources: 2 | - monitor.yaml 3 | -------------------------------------------------------------------------------- /config/prometheus/monitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhpds/gitea-operator/HEAD/config/prometheus/monitor.yaml -------------------------------------------------------------------------------- /config/rbac/gitea_editor_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhpds/gitea-operator/HEAD/config/rbac/gitea_editor_role.yaml -------------------------------------------------------------------------------- /config/rbac/gitea_viewer_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhpds/gitea-operator/HEAD/config/rbac/gitea_viewer_role.yaml -------------------------------------------------------------------------------- /config/rbac/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhpds/gitea-operator/HEAD/config/rbac/kustomization.yaml -------------------------------------------------------------------------------- /config/rbac/leader_election_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhpds/gitea-operator/HEAD/config/rbac/leader_election_role.yaml -------------------------------------------------------------------------------- /config/rbac/leader_election_role_binding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhpds/gitea-operator/HEAD/config/rbac/leader_election_role_binding.yaml -------------------------------------------------------------------------------- /config/rbac/metrics_auth_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhpds/gitea-operator/HEAD/config/rbac/metrics_auth_role.yaml -------------------------------------------------------------------------------- /config/rbac/metrics_auth_role_binding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhpds/gitea-operator/HEAD/config/rbac/metrics_auth_role_binding.yaml -------------------------------------------------------------------------------- /config/rbac/metrics_reader_role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhpds/gitea-operator/HEAD/config/rbac/metrics_reader_role.yaml -------------------------------------------------------------------------------- /config/rbac/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhpds/gitea-operator/HEAD/config/rbac/role.yaml -------------------------------------------------------------------------------- /config/rbac/role_binding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhpds/gitea-operator/HEAD/config/rbac/role_binding.yaml -------------------------------------------------------------------------------- /config/rbac/service_account.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhpds/gitea-operator/HEAD/config/rbac/service_account.yaml -------------------------------------------------------------------------------- /config/samples/gitea-server.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhpds/gitea-operator/HEAD/config/samples/gitea-server.yaml -------------------------------------------------------------------------------- /config/samples/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhpds/gitea-operator/HEAD/config/samples/kustomization.yaml -------------------------------------------------------------------------------- /config/samples/pfe_v1_gitea.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhpds/gitea-operator/HEAD/config/samples/pfe_v1_gitea.yaml -------------------------------------------------------------------------------- /config/scorecard/bases/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhpds/gitea-operator/HEAD/config/scorecard/bases/config.yaml -------------------------------------------------------------------------------- /config/scorecard/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhpds/gitea-operator/HEAD/config/scorecard/kustomization.yaml -------------------------------------------------------------------------------- /config/scorecard/patches/basic.config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhpds/gitea-operator/HEAD/config/scorecard/patches/basic.config.yaml -------------------------------------------------------------------------------- /config/scorecard/patches/olm.config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhpds/gitea-operator/HEAD/config/scorecard/patches/olm.config.yaml -------------------------------------------------------------------------------- /config/testing/debug_logs_patch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhpds/gitea-operator/HEAD/config/testing/debug_logs_patch.yaml -------------------------------------------------------------------------------- /config/testing/kustomization.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhpds/gitea-operator/HEAD/config/testing/kustomization.yaml -------------------------------------------------------------------------------- /config/testing/manager_image.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhpds/gitea-operator/HEAD/config/testing/manager_image.yaml -------------------------------------------------------------------------------- /config/testing/pull_policy/Always.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhpds/gitea-operator/HEAD/config/testing/pull_policy/Always.yaml -------------------------------------------------------------------------------- /config/testing/pull_policy/IfNotPresent.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhpds/gitea-operator/HEAD/config/testing/pull_policy/IfNotPresent.yaml -------------------------------------------------------------------------------- /config/testing/pull_policy/Never.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhpds/gitea-operator/HEAD/config/testing/pull_policy/Never.yaml -------------------------------------------------------------------------------- /gitea-base64.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhpds/gitea-operator/HEAD/gitea-base64.svg -------------------------------------------------------------------------------- /gitea-catalog.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhpds/gitea-operator/HEAD/gitea-catalog.Dockerfile -------------------------------------------------------------------------------- /gitea-catalog/index.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhpds/gitea-operator/HEAD/gitea-catalog/index.yaml -------------------------------------------------------------------------------- /molecule/default/converge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhpds/gitea-operator/HEAD/molecule/default/converge.yml -------------------------------------------------------------------------------- /molecule/default/create.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhpds/gitea-operator/HEAD/molecule/default/create.yml -------------------------------------------------------------------------------- /molecule/default/destroy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhpds/gitea-operator/HEAD/molecule/default/destroy.yml -------------------------------------------------------------------------------- /molecule/default/kustomize.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhpds/gitea-operator/HEAD/molecule/default/kustomize.yml -------------------------------------------------------------------------------- /molecule/default/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhpds/gitea-operator/HEAD/molecule/default/molecule.yml -------------------------------------------------------------------------------- /molecule/default/prepare.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhpds/gitea-operator/HEAD/molecule/default/prepare.yml -------------------------------------------------------------------------------- /molecule/default/tasks/gitea_test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhpds/gitea-operator/HEAD/molecule/default/tasks/gitea_test.yml -------------------------------------------------------------------------------- /molecule/default/verify.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhpds/gitea-operator/HEAD/molecule/default/verify.yml -------------------------------------------------------------------------------- /molecule/kind/converge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhpds/gitea-operator/HEAD/molecule/kind/converge.yml -------------------------------------------------------------------------------- /molecule/kind/create.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhpds/gitea-operator/HEAD/molecule/kind/create.yml -------------------------------------------------------------------------------- /molecule/kind/destroy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhpds/gitea-operator/HEAD/molecule/kind/destroy.yml -------------------------------------------------------------------------------- /molecule/kind/molecule.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhpds/gitea-operator/HEAD/molecule/kind/molecule.yml -------------------------------------------------------------------------------- /playbooks/gitea.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhpds/gitea-operator/HEAD/playbooks/gitea.yml -------------------------------------------------------------------------------- /requirements.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhpds/gitea-operator/HEAD/requirements.yml -------------------------------------------------------------------------------- /roles/gitea-ocp/README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhpds/gitea-operator/HEAD/roles/gitea-ocp/README.adoc -------------------------------------------------------------------------------- /roles/gitea-ocp/defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhpds/gitea-operator/HEAD/roles/gitea-ocp/defaults/main.yml -------------------------------------------------------------------------------- /roles/gitea-ocp/meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhpds/gitea-operator/HEAD/roles/gitea-ocp/meta/main.yml -------------------------------------------------------------------------------- /roles/gitea-ocp/tasks/create_user.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhpds/gitea-operator/HEAD/roles/gitea-ocp/tasks/create_user.yml -------------------------------------------------------------------------------- /roles/gitea-ocp/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhpds/gitea-operator/HEAD/roles/gitea-ocp/tasks/main.yml -------------------------------------------------------------------------------- /roles/gitea-ocp/tasks/migrate_repos.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhpds/gitea-operator/HEAD/roles/gitea-ocp/tasks/migrate_repos.yml -------------------------------------------------------------------------------- /roles/gitea-ocp/templates/configmap.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhpds/gitea-operator/HEAD/roles/gitea-ocp/templates/configmap.yaml.j2 -------------------------------------------------------------------------------- /roles/gitea-ocp/templates/deployment.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhpds/gitea-operator/HEAD/roles/gitea-ocp/templates/deployment.yaml.j2 -------------------------------------------------------------------------------- /roles/gitea-ocp/templates/persistentvolumeclaim.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhpds/gitea-operator/HEAD/roles/gitea-ocp/templates/persistentvolumeclaim.yaml.j2 -------------------------------------------------------------------------------- /roles/gitea-ocp/templates/route.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhpds/gitea-operator/HEAD/roles/gitea-ocp/templates/route.yaml.j2 -------------------------------------------------------------------------------- /roles/gitea-ocp/templates/service.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhpds/gitea-operator/HEAD/roles/gitea-ocp/templates/service.yaml.j2 -------------------------------------------------------------------------------- /roles/gitea-ocp/templates/serviceaccount.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhpds/gitea-operator/HEAD/roles/gitea-ocp/templates/serviceaccount.yaml.j2 -------------------------------------------------------------------------------- /roles/gitea-ocp/vars/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhpds/gitea-operator/HEAD/roles/gitea-ocp/vars/main.yml -------------------------------------------------------------------------------- /roles/postgresql-ocp/README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhpds/gitea-operator/HEAD/roles/postgresql-ocp/README.adoc -------------------------------------------------------------------------------- /roles/postgresql-ocp/defaults/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhpds/gitea-operator/HEAD/roles/postgresql-ocp/defaults/main.yml -------------------------------------------------------------------------------- /roles/postgresql-ocp/meta/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhpds/gitea-operator/HEAD/roles/postgresql-ocp/meta/main.yml -------------------------------------------------------------------------------- /roles/postgresql-ocp/tasks/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhpds/gitea-operator/HEAD/roles/postgresql-ocp/tasks/main.yml -------------------------------------------------------------------------------- /roles/postgresql-ocp/templates/deployment.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhpds/gitea-operator/HEAD/roles/postgresql-ocp/templates/deployment.yaml.j2 -------------------------------------------------------------------------------- /roles/postgresql-ocp/templates/persistentvolumeclaim.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhpds/gitea-operator/HEAD/roles/postgresql-ocp/templates/persistentvolumeclaim.yaml.j2 -------------------------------------------------------------------------------- /roles/postgresql-ocp/templates/secret.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhpds/gitea-operator/HEAD/roles/postgresql-ocp/templates/secret.yaml.j2 -------------------------------------------------------------------------------- /roles/postgresql-ocp/templates/service.yaml.j2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhpds/gitea-operator/HEAD/roles/postgresql-ocp/templates/service.yaml.j2 -------------------------------------------------------------------------------- /watches.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhpds/gitea-operator/HEAD/watches.yaml --------------------------------------------------------------------------------