File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -6,4 +6,4 @@ kind: Kustomization
66images :
77- name : controller
88 newName : public.ecr.aws/aws-controllers-k8s/s3-controller
9- newTag : 1.2.0
9+ newTag : 1.2.1
Original file line number Diff line number Diff line change 11apiVersion : v1
22name : s3-chart
33description : A Helm chart for the ACK service controller for Amazon Simple Storage Service (S3)
4- version : 1.2.0
5- appVersion : 1.2.0
4+ version : 1.2.1
5+ appVersion : 1.2.1
66home : https://github.com/aws-controllers-k8s/s3-controller
77icon : https://raw.githubusercontent.com/aws/eks-charts/master/docs/logo/aws.png
88sources :
Original file line number Diff line number Diff line change 6363 required :
6464 - names
6565 type : object
66+ resourceLabelSelector :
67+ description : LabelSelector is a label query over a set of resources.
68+ properties :
69+ matchLabels :
70+ additionalProperties :
71+ type : string
72+ type : object
73+ required :
74+ - matchLabels
75+ type : object
6676 resourceTypeSelector :
6777 items :
6878 properties :
Original file line number Diff line number Diff line change 11{{ .Chart.Name }} has been installed.
2- This chart deploys "public.ecr.aws/aws-controllers-k8s/s3-controller:1.2.0 ".
2+ This chart deploys "public.ecr.aws/aws-controllers-k8s/s3-controller:1.2.1 ".
33
44Check its status by running:
55 kubectl --namespace {{ .Release.Namespace }} get pods -l "app.kubernetes.io/instance={{ .Release.Name }}"
Original file line number Diff line number Diff line change 5151 - " $(AWS_REGION)"
5252 - --aws-endpoint-url
5353 - " $(AWS_ENDPOINT_URL)"
54+ {{- if .Values.aws.identity_endpoint_url }}
55+ - --aws-identity-endpoint-url
56+ - " $(AWS_IDENTITY_ENDPOINT_URL)"
57+ {{- end }}
58+ {{- if .Values.aws.allow_unsafe_aws_endpoint_urls }}
59+ - --allow-unsafe-aws-endpoint-urls
60+ {{- end }}
5461{{- if .Values.log.enable_development_logging }}
5562 - --enable-development-logging
5663{{- end }}
@@ -109,6 +116,8 @@ spec:
109116 value : {{ .Values.aws.region }}
110117 - name : AWS_ENDPOINT_URL
111118 value : {{ .Values.aws.endpoint_url | quote }}
119+ - name : AWS_IDENTITY_ENDPOINT_URL
120+ value : {{ .Values.aws.identity_endpoint_url | quote }}
112121 - name : ACK_WATCH_NAMESPACE
113122 value : {{ include "ack-s3-controller.watch-namespace" . }}
114123 - name : ACK_WATCH_SELECTORS
Original file line number Diff line number Diff line change 171171 "region" : {
172172 "type" : " string"
173173 },
174- "endpoint " : {
174+ "endpoint_url " : {
175175 "type" : " string"
176176 },
177+ "identity_endpoint_url" : {
178+ "type" : " string"
179+ },
180+ "allow_unsafe_aws_endpoint_urls" : {
181+ "type" : " boolean" ,
182+ "default" : false
183+ },
177184 "credentials" : {
178185 "description" : " AWS credentials information" ,
179186 "properties" : {
Original file line number Diff line number Diff line change 44
55image :
66 repository : public.ecr.aws/aws-controllers-k8s/s3-controller
7- tag : 1.2.0
7+ tag : 1.2.1
88 pullPolicy : IfNotPresent
99 pullSecrets : []
1010
9090 # If specified, use the AWS region for AWS API calls
9191 region : " "
9292 endpoint_url : " "
93+ identity_endpoint_url : " "
94+ allow_unsafe_aws_endpoint_urls : false
9395 credentials :
9496 # If specified, Secret with shared credentials file to use.
9597 secretName : " "
You can’t perform that action at this time.
0 commit comments