-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add some documentation of the values
- Loading branch information
1 parent
0c7c019
commit eef9153
Showing
3 changed files
with
93 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
{{ template "chart.header" . }} | ||
{{ template "chart.deprecationWarning" . }} | ||
|
||
{{ template "chart.badgesSection" . }} | ||
|
||
{{ template "chart.description" . }} | ||
|
||
{{ template "chart.homepageLine" . }} | ||
|
||
{{ template "chart.maintainersSection" . }} | ||
|
||
{{ template "chart.sourcesSection" . }} | ||
|
||
{{ template "chart.requirementsSection" . }} | ||
|
||
{{ template "chart.valuesSection" . }} | ||
|
||
{{ template "helm-docs.versionFooter" . }} | ||
|
||
## Update CRD | ||
|
||
In order to update the CRD, copy the following file from the last released | ||
patterns operator version: | ||
|
||
```sh | ||
cp -v patterns-operator/config/crd/bases/gitops.hybrid-cloud-patterns.io_patterns.yaml ./crds/ | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,39 +1,57 @@ | ||
global: | ||
# -- List of additional value files to be passed to the pattern | ||
extraValueFiles: [] | ||
|
||
# -- main is used primarly for initial bootstrap pattern configuration | ||
main: | ||
# -- Settings related to the git repository used to deploy the pattern | ||
git: | ||
# Uncommenting this will set the `originRepo` with the below value | ||
# when `originRepo` is set, an in-cluster gitea will automatically be spawned. | ||
# In this case `originRepo` will point to the upstream repository and `targetRepo` | ||
# will point to the internal in-cluster gitea mirror | ||
# repoUpstreamURL: https://github.com/validatedpatterns/multicloud-gitops | ||
# -- Repository URL pointing to the pattern | ||
repoURL: https://github.com/pattern-clone/mypattern | ||
# -- The branch or git reference to use to deploy the pattern | ||
revision: main | ||
# -- Setting this field will make it so that an in-cluster gitea instance | ||
# will be spawned. `repoURL` will be ignored and the pattern will be deployed | ||
# using the in-gitea URL | ||
repoUpstreamURL: null | ||
|
||
# -- Settings related to the gitops operator | ||
gitops: | ||
# -- Default channel to install the gitops operator from | ||
channel: "gitops-1.13" | ||
# -- Source to be used to install the gitops operator from | ||
operatorSource: redhat-operators | ||
|
||
# Settings related to the multi source configuration of patterns | ||
multiSourceConfig: | ||
# -- Enables a multisource configuration for the clustergroup chart | ||
enabled: false | ||
# helmRepoUrl: registry.internal.network/helm | ||
# clusterGroupChartVersion: 0.8.* | ||
# -- The URL of the VP helm charts repository (defaults to https://charts.validatedpatterns.io) | ||
helmRepoUrl: null | ||
# -- The clustergroup chart version to be used when deploying a pattern (defaults to 0.8.*) | ||
clusterGroupChartVersion: null | ||
|
||
# String to enable certain experimental capabilities in the operator and the | ||
# -- String to enable certain experimental capabilities in the operator and the | ||
# framework. Not needed unless you know exactly what you're doing. | ||
experimentalCapabilities: "" | ||
|
||
patternsOperator: | ||
# -- channel name to install the patterns operator from | ||
channel: fast | ||
# -- Source to be used to install the patterns operator from | ||
source: community-operators | ||
# -- Installation plan approval of the patterns operator | ||
installPlanApproval: Automatic | ||
# -- Source namespace to install the patterns operator from | ||
sourceNamespace: openshift-marketplace | ||
# -- Starting CSV for the install of the patterns operator | ||
startingCSV: null | ||
|
||
# -- Name of the clusterGroup to be used. Drives the clusterGroup chart | ||
clusterGroupName: default | ||
|
||
# If you are using a private repository define the secret where | ||
# credentials to access the private repository are | ||
# tokenSecret: | ||
# tokenSecretNamespace: | ||
# -- Name of the secret containing access credentials to clone the git repo to deploy the pattern | ||
# See https://validatedpatterns.io/blog/2023-12-20-private-repos/ for more information | ||
tokenSecret: null | ||
# -- Namespace where the above secret will be | ||
tokenSecretNamespace: null |