This repository was archived by the owner on Nov 7, 2019. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +7
-1
lines changed
charts/aws-service-operator Expand file tree Collapse file tree 4 files changed +7
-1
lines changed Original file line number Diff line number Diff line change 1
1
apiVersion : v1
2
2
name : aws-service-operator
3
- version : 0.0.1
3
+ version : 0.0.2
4
4
description : The AWS Service Operator allows you to manage AWS resources using Kubernetes Custom Resource Definitions.
5
5
keywords :
6
6
- AWS
Original file line number Diff line number Diff line change @@ -24,6 +24,7 @@ The following table lists the configurable parameters of the aws-service-operato
24
24
| ` image.repository ` | Container image repository | ` awsserviceoperator/aws-service-operator ` |
25
25
| ` image.tag ` | Container image tag | ` v0.0.1-alpha2 ` |
26
26
| ` image.pullPolicy ` | Container pull policy | ` IfNotPresent ` |
27
+ | ` image.pullSecret ` | Container pull secret (secret created not by this chart) | `` |
27
28
| ` operator.accountId ` | AWS Account ID to operator on | ` "" ` |
28
29
| ` operator.bucket ` | Base bucket to store resources in | ` aws-operator ` |
29
30
| ` operator.clusterName ` | Used to label generated CF templates | ` aws-operator ` |
Original file line number Diff line number Diff line change 22
22
nodeSelector :
23
23
{{ toYaml .Values.nodeSelector | indent 8 }}
24
24
{{ end }}
25
+ {{- if .Values.image.pullSecret }}
26
+ imagePullSecrets :
27
+ - name : {{ .Values.image.pullSecret }}
28
+ {{- end }}
25
29
serviceAccountName : {{ if .Values.rbac.create }}{{ template "aws-service-operator.fullname" . }}{{ else }}"{{ .Values.rbac.serviceAccountName }}"{{ end }}
26
30
containers :
27
31
- name : aws-service-operator
Original file line number Diff line number Diff line change 5
5
repository : awsserviceoperator/aws-service-operator
6
6
tag : v0.0.1-alpha2
7
7
pullPolicy : IfNotPresent
8
+ # pullSecret: your-k8-secet-to-use (not deployed by chart, but you can reference existing one)
8
9
9
10
# # App config
10
11
operator :
You can’t perform that action at this time.
0 commit comments