-
Notifications
You must be signed in to change notification settings - Fork 289
Expand file tree
/
Copy pathvalues-standalone.yaml
More file actions
67 lines (67 loc) · 2.39 KB
/
values-standalone.yaml
File metadata and controls
67 lines (67 loc) · 2.39 KB
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
clusterGroup:
name: standalone
namespaces:
vault:
external-secrets-operator:
operatorGroup: true
targetNamespaces: []
external-secrets:
config-demo:
hello-world:
subscriptions:
eso:
name: openshift-external-secrets-operator
namespace: external-secrets-operator
channel: stable-v1
argoProjects:
- hub
- config-demo
- hello-world
# Explicitly mention the cluster-state based overrides we plan to use for this pattern.
# We can use self-referential variables because the chart calls the tpl function with these variables defined
sharedValueFiles:
- '/overrides/values-{{ $.Values.global.clusterPlatform }}.yaml'
# sharedValueFiles is a flexible mechanism that will add the listed valuefiles to every app defined in the
# applications section.
#
# This kind of variable substitution will work with any of the variables the Validated Patterns operator knows
# about and sets, so this is also possible, for example:
# - '/overrides/values-{{ $.Values.global.hubClusterDomain }}.yaml'
# - '/overrides/values-{{ $.Values.global.localClusterDomain }}.yaml'
applications:
vault:
name: vault
namespace: vault
argoProject: hub
chart: hashicorp-vault
chartVersion: 0.1.*
openshift-external-secrets:
name: openshift-external-secrets
namespace: external-secrets
argoProject: hub
chart: openshift-external-secrets
chartVersion: 0.0.*
config-demo:
name: config-demo
namespace: config-demo
argoProject: config-demo
path: charts/all/config-demo
hello-world:
name: hello-world
namespace: hello-world
argoProject: hello-world
path: charts/all/hello-world
imperative:
# NOTE: We *must* use lists and not hashes. As hashes lose ordering once parsed by helm
# The default schedule is every 10 minutes: imperative.schedule
# Total timeout of all jobs is 1h: imperative.activeDeadlineSeconds
# imagePullPolicy is set to always: imperative.imagePullPolicy
# For additional overrides that apply to the jobs, please refer to
# https://validatedpatterns.io/patterns/multicloud-gitops/mcg-imperative-actions/
jobs:
- name: hello-world
# ansible playbook to be run
playbook: rhvp.cluster_utils.hello_world
# per playbook timeout in seconds
timeout: 234
# verbosity: "-v"