da97adbfb7
The install-* roles in zuul-jobs have been renamed to ensure-*, follow the rename. Change-Id: I32984fcd408cf0cd3751c5c5960608bec6e202a2
35 lines
800 B
YAML
35 lines
800 B
YAML
- hosts: all
|
|
name: Install kubernetes with minikube
|
|
roles:
|
|
- role: ensure-kubernetes
|
|
vars:
|
|
minikube_dns_resolvers:
|
|
- '1.1.1.1'
|
|
- '8.8.8.8'
|
|
kubernetes_runtime: cri-o
|
|
post_tasks:
|
|
- name: Check crio version
|
|
command: crictl version
|
|
become: yes
|
|
failed_when: false
|
|
|
|
- name: Create a test pod definition
|
|
copy:
|
|
dest: test-pod.yaml
|
|
content: |
|
|
apiVersion: v1
|
|
kind: Pod
|
|
metadata:
|
|
name: test
|
|
spec:
|
|
restartPolicy: Never
|
|
containers:
|
|
- name: test
|
|
image: k8s.gcr.io/pause:3.1
|
|
|
|
- name: Start pod
|
|
command: kubectl apply -f test-pod.yaml
|
|
|
|
- name: Check status
|
|
shell: sleep 5; kubectl get pods
|