Skip to content

Commit

Permalink
Fix linting issues
Browse files Browse the repository at this point in the history
Signed-off-by: Jacob Weinstock <[email protected]>
  • Loading branch information
jacobweinstock committed Oct 25, 2022
1 parent 2baf962 commit ab0e8db
Showing 1 changed file with 17 additions and 13 deletions.
30 changes: 17 additions & 13 deletions deploy/stack/helm/manifests/ubuntu-download.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,19 +34,23 @@ spec:
- name: download-ubuntu-focal
image: bash:5.2.2
command: ["/script/entrypoint.sh"]
args: ["https://cloud-images.ubuntu.com/daily/server/focal/current/focal-server-cloudimg-amd64.img", "/output"]
args:
[
"https://cloud-images.ubuntu.com/daily/server/focal/current/focal-server-cloudimg-amd64.img",
"/output",
]
volumeMounts:
- mountPath: /output
name: hook-artifacts
- mountPath: /script
name: configmap-volume
- mountPath: /output
name: hook-artifacts
- mountPath: /script
name: configmap-volume
restartPolicy: OnFailure
volumes:
- name: hook-artifacts
hostPath:
path: /opt/hook
type: DirectoryOrCreate
- name: configmap-volume
configMap:
defaultMode: 0700
name: download-image
- name: hook-artifacts
hostPath:
path: /opt/hook
type: DirectoryOrCreate
- name: configmap-volume
configMap:
defaultMode: 0700
name: download-image

0 comments on commit ab0e8db

Please sign in to comment.