summaryrefslogtreecommitdiffstats
path: root/tests/roles/cli/tasks/commit.yaml
blob: 06f3505ab37b3f623452d42af0270827d53e8014 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
---
- name: buildah commit an image by name
  command: buildah commit nginxc-2 commitbyname/nginxbyname

- name: check commit images by name is existed
  command: buildah images commitbyname/nginxbyname

- name: get container ID
  shell: buildah containers | grep nginxc-2 | awk '{print $1}'
  register: cid

- name: buildah commit an image by ID
  command: buildah commit {{ cid.stdout }} commitbyid/nginxbyid

- name: check commit images by ID is existed
  command: buildah images commitbyid/nginxbyid

- name: buildah from commit image
  command: buildah from docker.io/commitbyid/nginxbyid

- name: check container nginxbyid exists by inspect
  command: buildah inspect nginxbyid-working-container
  
- name: buildah commit to docker-distribution
  command: buildah commit --tls-verify=false nginxbyid-working-container docker://localhost:5000/commit/nginx

- name: buildah commit quiet
  command: buildah commit --quiet --tls-verify=false nginxbyid-working-container docker://localhost:5000/commit/nginx
  register: quietcommit
  failed_when: '"Getting" in quietcommit.stdout'

- name: create container from commit images on docker-distribution
  command: buildah from --tls-verify=false docker://localhost:5000/commit/nginx

- name: buildah commit with rm container
  command: buildah commit --rm -q --tls-verify=false nginxbyid-working-container docker://localhost:5000/commit/nginx

- name: verify the container is removed after commit
  command: buildah inspect nginxbyid-working-container
  register: commitrm
  failed_when: commitrm.rc != 1

- name: buildah commit format oci
  command: buildah commit --disable-compression --format=oci nginx-working-container nginxoci

- name: buildah commit format docker
  command: buildah commit -D -f docker nginx-working-container nginxdocker
 
- name: remove containers from commit images
  command: buildah rm nginx-working-container

- name: remove images from commit
  command: buildah rmi {{ item }}
  with_items:
    - localhost:5000/commit/nginx
    - commitbyid/nginxbyid
    - commitbyname/nginxbyname
    - nginxoci
    - nginxdocker