|
| 1 | +--- |
| 2 | +# Chart-wide defaults for every rendered Argo CD Application (see templates/). |
| 3 | +applicationNamespace: openshift-gitops |
| 4 | +destinationServer: https://kubernetes.default.svc |
| 5 | +applications: |
| 6 | + # --------------------------------------------------------------------------- |
| 7 | + # Example application — documentation only (everything below is commented out). |
| 8 | + # Copy the block, choose a unique key (DNS-1123 name), remove "# " prefixes, |
| 9 | + # set enabled: true, and fill repoURL / path / targetRevision as needed. |
| 10 | + # |
| 11 | + # Per-application keys (under applications.<name>): |
| 12 | + # enabled bool If true, render an Application CR; if false, skip. |
| 13 | + # repoURL string spec.source.repoURL (Git URL). |
| 14 | + # path string Directory in the repo; empty -> default ".". |
| 15 | + # targetRevision string Branch, tag, or commit; empty -> default "HEAD". |
| 16 | + # syncWave string argocd.argoproj.io/sync-wave annotation. |
| 17 | + # syncOptions list Optional strings merged into spec.syncPolicy.syncOptions |
| 18 | + # (e.g. Prune=true). |
| 19 | + # Optional overrides (supported by the chart; omitted from defaults below): |
| 20 | + # project string Argo CD AppProject; default "default" if unset. |
| 21 | + # syncPolicy map Merged with syncOptions into spec.syncPolicy. |
| 22 | + # |
| 23 | + # This chart does not set spec.destination.namespace; only destination.server |
| 24 | + # is set (from destinationServer above). |
| 25 | + # |
| 26 | + # example-my-app: |
| 27 | + # enabled: false |
| 28 | + # repoURL: https://github.com/openstack-k8s-operators/gitops |
| 29 | + # path: environments/example |
| 30 | + # targetRevision: main |
| 31 | + # syncWave: "0" |
| 32 | + # syncOptions: |
| 33 | + # - Prune=true |
| 34 | + # --------------------------------------------------------------------------- |
| 35 | + # Deploy and initialize MetalLB, nmstate, cert-manager. |
| 36 | + # This covers "Planning your deployment - chapter 3.1.3" |
| 37 | + # https://docs.redhat.com/en/documentation/red_hat_openstack_services_on_openshift/18.0/html/planning_your_deployment/assembly_infrastructure-and-system-requirements#ref_RHOCP-software-requirements_planning |
| 38 | + operator-dependencies: |
| 39 | + enabled: true |
| 40 | + path: "/examples/dependencies" |
| 41 | + repoURL: https://github.com/openstack-k8s-operators/gitops |
| 42 | + syncOptions: |
| 43 | + - Prune=true |
| 44 | + syncWave: "-20" |
| 45 | + targetRevision: v0.1.0 |
| 46 | + # Deploy and configure vault-secrets operator. |
| 47 | + # This covers "Deploying RHOSO - chapter 2.3" |
| 48 | + # https://docs.redhat.com/en/documentation/red_hat_openstack_services_on_openshift/18.0/html/deploying_red_hat_openstack_services_on_openshift/assembly_preparing-rhocp-for-rhoso#proc_providing-secure-access-to-the-RHOSO-services_preparing |
| 49 | + secrets: |
| 50 | + enabled: true |
| 51 | + path: "TODO" |
| 52 | + repoURL: https://github.com/openstack-k8s-operators/gitops |
| 53 | + syncOptions: |
| 54 | + - Prune=true |
| 55 | + syncWave: "-20" |
| 56 | + targetRevision: v0.1.0 |
| 57 | + # Deploy openstack-operator. |
| 58 | + # This covers "Deploying RHOSO - chapter 1" |
| 59 | + # https://docs.redhat.com/en/documentation/red_hat_openstack_services_on_openshift/18.0/html/deploying_red_hat_openstack_services_on_openshift/assembly_installing-and-preparing-the-openstack-operator |
| 60 | + openstack-operator: |
| 61 | + enabled: true |
| 62 | + path: "TODO" |
| 63 | + repoURL: https://github.com/openstack-k8s-operators/gitops |
| 64 | + syncOptions: |
| 65 | + - Prune=true |
| 66 | + syncWave: "-20" |
| 67 | + targetRevision: v0.1.0 |
| 68 | + # Create the main OpenStack Custom Resource. |
| 69 | + # This covers "Deploying RHOSO - chapter 1" |
| 70 | + # https://docs.redhat.com/en/documentation/red_hat_openstack_services_on_openshift/18.0/html/deploying_red_hat_openstack_services_on_openshift/assembly_installing-and-preparing-the-openstack-operator |
| 71 | + openstack-operator-cr: |
| 72 | + enabled: true |
| 73 | + path: "TODO" |
| 74 | + repoURL: https://github.com/openstack-k8s-operators/gitops |
| 75 | + syncOptions: |
| 76 | + - Prune=true |
| 77 | + syncWave: "-10" |
| 78 | + targetRevision: v0.1.0 |
| 79 | + # Create underlying networks for controlplane and dataplane. |
| 80 | + # Covers "Deploying RHOSO - chapter 3" |
| 81 | + # https://docs.redhat.com/en/documentation/red_hat_openstack_services_on_openshift/18.0/html/deploying_red_hat_openstack_services_on_openshift/assembly_preparing-rhoso-networks_preparing |
| 82 | + openstack-networks: |
| 83 | + enabled: true |
| 84 | + path: "TODO" |
| 85 | + repoURL: https://github.com/openstack-k8s-operators/gitops |
| 86 | + syncOptions: |
| 87 | + - Prune=true |
| 88 | + syncWave: "0" |
| 89 | + targetRevision: v0.1.0 |
| 90 | + # Deploy and configure OpenStackControlPlane resource. |
| 91 | + # Covers "Deploying RHOSO - chapter 4" |
| 92 | + # https://docs.redhat.com/en/documentation/red_hat_openstack_services_on_openshift/18.0/html/deploying_red_hat_openstack_services_on_openshift/assembly_creating-the-control-plane |
| 93 | + openstack-controlplane: |
| 94 | + enabled: true |
| 95 | + path: "examples/controlplane" |
| 96 | + repoURL: https://github.com/openstack-k8s-operators/gitops |
| 97 | + syncOptions: |
| 98 | + - Prune=true |
| 99 | + syncWave: "10" |
| 100 | + targetRevision: v0.1.0 |
| 101 | + # Deploy and configure OpenStackDataPlaneNodeSet and OpenStackDataPlaneDeployment resources. |
| 102 | + # Covers "Deploying RHOSO - chapter 5" |
| 103 | + # https://docs.redhat.com/en/documentation/red_hat_openstack_services_on_openshift/18.0/html/deploying_red_hat_openstack_services_on_openshift/assembly_creating-the-data-plane |
| 104 | + openstack-dataplane: |
| 105 | + enabled: true |
| 106 | + path: "examples/dataplane" |
| 107 | + repoURL: https://github.com/openstack-k8s-operators/gitops |
| 108 | + syncOptions: |
| 109 | + - Prune=true |
| 110 | + syncWave: "20" |
| 111 | + targetRevision: v0.1.0 |
0 commit comments