Is it possible to create K8s resources via container or script template? #10885
-
Currently, it seems only the Wondering would it possible to achieve this goal by - name: create-resources-via-script-template
script:
image: bitnami/kubectl:latest
command: [ sh ]
source: |
kubectl create ns argo |
Beta Was this translation helpful? Give feedback.
Answered by
terrytangyuan
Apr 13, 2023
Replies: 1 comment 4 replies
-
Yes you can run a script with |
Beta Was this translation helpful? Give feedback.
4 replies
Answer selected by
agilgur5
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Yes you can run a script with
kubectl create
andkubectl wait
.