Skip to content
This repository was archived by the owner on Nov 7, 2019. It is now read-only.

Commit adb3be8

Browse files
author
Christopher Hein
authored
Merge branch 'master' into feature/adding_ec
2 parents 8b2738a + 0afe49c commit adb3be8

File tree

4 files changed

+7
-1
lines changed

4 files changed

+7
-1
lines changed

charts/aws-service-operator/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
apiVersion: v1
22
name: aws-service-operator
3-
version: 0.0.1
3+
version: 0.0.2
44
description: The AWS Service Operator allows you to manage AWS resources using Kubernetes Custom Resource Definitions.
55
keywords:
66
- AWS

charts/aws-service-operator/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ The following table lists the configurable parameters of the aws-service-operato
2424
| `image.repository` | Container image repository | `awsserviceoperator/aws-service-operator` |
2525
| `image.tag` | Container image tag | `v0.0.1-alpha2` |
2626
| `image.pullPolicy` | Container pull policy | `IfNotPresent` |
27+
| `image.pullSecret` | Container pull secret (secret created not by this chart) | `` |
2728
| `operator.accountId` | AWS Account ID to operator on | `""` |
2829
| `operator.bucket` | Base bucket to store resources in | `aws-operator` |
2930
| `operator.clusterName` | Used to label generated CF templates | `aws-operator` |

charts/aws-service-operator/templates/deployment.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,10 @@ spec:
2222
nodeSelector:
2323
{{ toYaml .Values.nodeSelector | indent 8 }}
2424
{{ end }}
25+
{{- if .Values.image.pullSecret }}
26+
imagePullSecrets:
27+
- name: {{ .Values.image.pullSecret }}
28+
{{- end }}
2529
serviceAccountName: {{ if .Values.rbac.create }}{{ template "aws-service-operator.fullname" . }}{{ else }}"{{ .Values.rbac.serviceAccountName }}"{{ end }}
2630
containers:
2731
- name: aws-service-operator

charts/aws-service-operator/values.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ image:
55
repository: awsserviceoperator/aws-service-operator
66
tag: v0.0.1-alpha2
77
pullPolicy: IfNotPresent
8+
#pullSecret: your-k8-secet-to-use (not deployed by chart, but you can reference existing one)
89

910
## App config
1011
operator:

0 commit comments

Comments
 (0)