-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathschema.yaml
185 lines (175 loc) · 5.57 KB
/
schema.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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
applicationApiVersion: v1beta1
x-google-marketplace:
# MUST be v2.
schemaVersion: v2
# MUST match the version of the Application custom resource object.
# This is the same as the top level applicationApiVersion field in v1.
applicationApiVersion: v1beta1
# The release version is required in the schema and MUST match the
# release tag on the the deployer.
publishedVersion: '2.6.0'
publishedVersionMetadata:
releaseNote: >-
Release notes can be found here: https://backup.docs.portworx.com/release-notes/
# releaseTypes list is optional.
releaseTypes:
- Feature
- BugFix
# If recommend is true, users using older releases are encouraged
# to update as soon as possible. Useful if, for example, this release
# fixes a critical issue.
recommended: true
# This MUST be specified to indicate that the deployer supports managed updates.
# Note that this could be left out or kalmSupported set to false, in
# which case the deployer uses schema v2 but does not support update.
managedUpdates:
kalmSupported: true
# Image declaration is required here.
images:
# PX-CENTRAL
pxcentral-onprem-api:
properties:
images.pxcentralApiServerImage.registry:
type: REGISTRY
images.pxcentralApiServerImage.repo:
type: REPO_WITHOUT_REGISTRY
images.pxcentralApiServerImage.tag:
type: TAG
pxcentral-onprem-ui-frontend:
properties:
images.pxcentralFrontendImage.registry:
type: REGISTRY
images.pxcentralFrontendImage.repo:
type: REPO_WITHOUT_REGISTRY
images.pxcentralFrontendImage.tag:
type: TAG
pxcentral-onprem-ui-backend:
properties:
images.pxcentralBackendImage.registry:
type: REGISTRY
images.pxcentralBackendImage.repo:
type: REPO_WITHOUT_REGISTRY
images.pxcentralBackendImage.tag:
type: TAG
pxcentral-onprem-ui-lhbackend:
properties:
images.pxcentralMiddlewareImage.registry:
type: REGISTRY
images.pxcentralMiddlewareImage.repo:
type: REPO_WITHOUT_REGISTRY
images.pxcentralMiddlewareImage.tag:
type: TAG
pxcentral-onprem-post-setup:
properties:
images.postInstallSetupImage.registry:
type: REGISTRY
images.postInstallSetupImage.repo:
type: REPO_WITHOUT_REGISTRY
images.postInstallSetupImage.tag:
type: TAG
postgresql:
properties:
images.keycloakBackendImage.registry:
type: REGISTRY
images.keycloakBackendImage.repo:
type: REPO_WITHOUT_REGISTRY
images.keycloakBackendImage.tag:
type: TAG
keycloak:
properties:
images.keycloakFrontendImage.registry:
type: REGISTRY
images.keycloakFrontendImage.repo:
type: REPO_WITHOUT_REGISTRY
images.keycloakFrontendImage.tag:
type: TAG
keycloak-login-theme:
properties:
images.keycloakLoginThemeImage.registry:
type: REGISTRY
images.keycloakLoginThemeImage.repo:
type: REPO_WITHOUT_REGISTRY
images.keycloakLoginThemeImage.tag:
type: TAG
busybox:
properties:
images.keycloakInitContainerImage.registry:
type: REGISTRY
images.keycloakInitContainerImage.repo:
type: REPO_WITHOUT_REGISTRY
images.keycloakInitContainerImage.tag:
type: TAG
mysql:
properties:
images.mysqlImage.registry:
type: REGISTRY
images.mysqlImage.repo:
type: REPO_WITHOUT_REGISTRY
images.mysqlImage.tag:
type: TAG
## Images required for enabling px-backup
px-backup:
properties:
images.pxBackupImage.registry:
type: REGISTRY
images.pxBackupImage.repo:
type: REPO_WITHOUT_REGISTRY
images.pxBackupImage.tag:
type: TAG
mongodb:
properties:
images.mongodbImage.registry:
type: REGISTRY
images.mongodbImage.repo:
type: REPO_WITHOUT_REGISTRY
images.mongodbImage.tag:
type: TAG
deployerServiceAccount:
description: >
Creates app resources, including the MyAppCustomResource CRD.
roles:
- type: ClusterRole
rulesType: CUSTOM
rules:
- apiGroups: ['rbac.authorization.k8s.io', "clusterroles.rbac.authorization.k8s.io"]
resources: ['*']
verbs: ["*"]
properties:
name:
type: string
default: "portworx"
x-google-marketplace:
type: NAME
namespace:
type: string
x-google-marketplace:
type: NAMESPACE
pxBackupServiceAccount:
title: PX Backup Service Account
type: string
x-google-marketplace:
type: SERVICE_ACCOUNT
title: PX Backup Service Account
serviceAccount:
description: Service account to assign to Portworx Operator
roles:
- type: ClusterRole
rulesType: CUSTOM
rules:
- apiGroups: ['*']
resources: ['*']
verbs: ['create','get','update','patch','delete','list','watch','deletecollection','use','impersonate','bind','escalate']
reportingSecret:
type: string
x-google-marketplace:
type: REPORTING_SECRET
# persistentStorage
persistentStorage.storageClassName:
title: Storage Class Name
description: Provide storage class name which exists on the cluster, for anthos please refer https://backup.docs.portworx.com/
type: string
default: "standard"
required:
- name
- namespace
- persistentStorage.storageClassName