Skip to content

Commit e20ca2a

Browse files
committed
Fix up
1 parent 788526d commit e20ca2a

File tree

4 files changed

+4
-5
lines changed

4 files changed

+4
-5
lines changed

.pre-commit-config.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@ repos:
3535
- id: check-symlinks
3636
- id: check-vcs-permalinks
3737
- id: check-yaml
38-
exclude: ^plugins/integrations/kubernetes-service/src/main/resources/conf
3938
- id: destroyed-symlinks
4039
- id: detect-aws-credentials
4140
args: [--allow-missing-credentials]

plugins/integrations/kubernetes-service/src/main/resources/conf/k8s-control-node-add.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ users:
2121
- name: cloud
2222
sudo: ALL=(ALL) NOPASSWD:ALL
2323
shell: /bin/bash
24-
ssh_authorized_keys:
24+
ssh_authorized_keys: |
2525
{{ k8s.ssh.pub.key }}
2626
2727
write_files:

plugins/integrations/kubernetes-service/src/main/resources/conf/k8s-control-node.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ users:
2121
- name: cloud
2222
sudo: ALL=(ALL) NOPASSWD:ALL
2323
shell: /bin/bash
24-
ssh_authorized_keys:
24+
ssh_authorized_keys: |
2525
{{ k8s.ssh.pub.key }}
2626
2727
write_files:

plugins/integrations/kubernetes-service/src/main/resources/conf/k8s-node.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ users:
2121
- name: cloud
2222
sudo: ALL=(ALL) NOPASSWD:ALL
2323
shell: /bin/bash
24-
ssh_authorized_keys:
25-
{{ k8s.ssh.pub.key }}
24+
ssh_authorized_keys: |
25+
${{ k8s.ssh.pub.key }}
2626
2727
write_files:
2828
- path: /opt/bin/setup-kube-system

0 commit comments

Comments
 (0)