This repository has been archived by the owner on Nov 24, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathvalues-factory.yaml
79 lines (74 loc) · 3 KB
/
values-factory.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
clusterGroup:
name: factory
isHubCluster: false
# This section is where you can add namespaces you want to create
# The Validated Patterns framework will create these namespaces on your behalf.
# You will not have to create namespace manifests as part of you application.
# The namespaces here are meant to be the ones that you would create in a
# Factory/Edge cluster that defines the production environment.
#
# Example:
#namespaces:
# - app-namespace
# - open-cluster-management
#
# This section is part of the clusterGroup section
namespaces:
- app-namespace
# This section is where you list the operators that your application workload
# will need. The Validated Pattern Framework will install the operators listed on your behalf.
# Define the operator subscriptions - if a specific channel is required, then include it; else
# create stanza without it to pull the default channel. For operators that are coming from community
# or certified operators you must add a source declaration. See opendatahub example below.
#
# The supported options are:
# - name: <Name of the operator>
# namespace: <target namespace> if ommited the operator will choose it's target namespace.
# disabled: <boolean> If true it tells the framework not to create the subscription manifest.
# installApprovalPlan: <Manual or Automatic> Approval is the user approval policy for an InstallPlan. It must be one of "Automatic" or "Manual".
# If omitted it defaults to Automatic.
# source: <source for the operator: e.g redhat-operators | community-operators>
# channel: < Channel for the operator> If ommited the operator will use the defaultChannel
# csv: <cluster service version> This will be used only if useCSV is set to True in values-global.yaml
#
# Example
# - name: advanced-cluster-management
# namespace: open-cluster-management
# disabled: false
# source: redhat-operators
# channel: release-2.3
# csv: v2.3.2
#
# You can use the oc cli to get the details for each operator such as csv and defaultChannel.
# $ oc get packagemanisfests - This command will list all the available operators
# $ oc get packagemanifest <operator> -o yaml - will print the details in yaml format
#
subscriptions:
odh:
name: opendatahub-operator
source: community-operators
#
# This section creates projects in the openshift-gitops ArgoCD instance
# These projects are useful to managed hub/datacenter and factory/edge components using ArgoCD,
#
projects:
- factory
#
# To have apps in multiple flavors, use namespaces and use helm overrides as appropriate
#
# - name: pipelines
# namespace: production
# project: datacenter
# path: applications/pipeline
# repoURL: https://github.com/you/applications.git
# targetRevision: stable
# overrides:
# - name: myparam
# value: myparam
#
# - name: pipelines
# namespace: staging
# project: datacenter
# path: applications/pipeline
# repoURL: https://github.com/your/applications.git
# targetRevision: main