Last active
January 24, 2021 22:03
-
-
Save jseguillon/c45a2cd0e24ccf3b695b4c7e63ecbccc to your computer and use it in GitHub Desktop.
molecule kubevirt - pod
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
apiVersion: v1 | |
kind: Pod | |
metadata: | |
name: molecule | |
labels: | |
app: molecule | |
spec: | |
serviceAccountName: molecule-kubevirt | |
containers: | |
- name: molecule | |
image: my-registry/molecule_kubevirt_runner:latest | |
imagePullPolicy: IfNotPresent | |
command: [ "molecule", "test" ] | |
env: | |
- name: PY_COLORS | |
value: '1' | |
- name: ANSIBLE_FORCE_COLOR | |
value: '1' | |
restartPolicy: Never |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment