Skip to content

Commit b3528ea

Browse files
authored
Merge pull request kubernetes#3646 from dmakeroam/master
Update Cluster Autoscaler (CA) volume mount path to /etc/ssl/certs/ca-bundle.crt
2 parents a414125 + 4e89945 commit b3528ea

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

cluster-autoscaler/cloudprovider/aws/examples/cluster-autoscaler-autodiscover.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ spec:
157157
- --node-group-auto-discovery=asg:tag=k8s.io/cluster-autoscaler/enabled,k8s.io/cluster-autoscaler/<YOUR CLUSTER NAME>
158158
volumeMounts:
159159
- name: ssl-certs
160-
mountPath: /etc/ssl/certs/ca-certificates.crt
160+
mountPath: /etc/ssl/certs/ca-certificates.crt #/etc/ssl/certs/ca-bundle.crt for Amazon Linux Worker Nodes
161161
readOnly: true
162162
imagePullPolicy: "Always"
163163
volumes:

cluster-autoscaler/cloudprovider/aws/examples/cluster-autoscaler-multi-asg.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ spec:
158158
- --nodes=1:3:k8s-worker-asg-2
159159
volumeMounts:
160160
- name: ssl-certs
161-
mountPath: /etc/ssl/certs/ca-certificates.crt
161+
mountPath: /etc/ssl/certs/ca-certificates.crt #/etc/ssl/certs/ca-bundle.crt for Amazon Linux Worker Nodes
162162
readOnly: true
163163
imagePullPolicy: "Always"
164164
volumes:

cluster-autoscaler/cloudprovider/aws/examples/cluster-autoscaler-one-asg.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ spec:
156156
- --nodes=1:10:k8s-worker-asg-1
157157
volumeMounts:
158158
- name: ssl-certs
159-
mountPath: /etc/ssl/certs/ca-certificates.crt
159+
mountPath: /etc/ssl/certs/ca-certificates.crt #/etc/ssl/certs/ca-bundle.crt for Amazon Linux Worker Nodes
160160
readOnly: true
161161
imagePullPolicy: "Always"
162162
volumes:

cluster-autoscaler/cloudprovider/aws/examples/cluster-autoscaler-run-on-master.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ spec:
163163
- --nodes={{ node_asg_min }}:{{ node_asg_max }}:{{ name }}
164164
volumeMounts:
165165
- name: ssl-certs
166-
mountPath: /etc/ssl/certs/ca-certificates.crt
166+
mountPath: /etc/ssl/certs/ca-certificates.crt #/etc/ssl/certs/ca-bundle.crt for Amazon Linux Worker Nodes
167167
readOnly: true
168168
imagePullPolicy: "Always"
169169
volumes:

0 commit comments

Comments
 (0)