Skip to content

Commit

Permalink
Change buildah image to official repository
Browse files Browse the repository at this point in the history
  • Loading branch information
khrm authored and tekton-robot committed Jun 26, 2019
1 parent fb943f5 commit 984c3a2
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion buildah/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ kubectl apply -f https://raw.githubusercontent.com/tektoncd/catalog/master/build
### Parameters

* **BUILDER_IMAGE:**: The name of the image containing the Buildah tool. See
note below. (_default:_ quay.io/openshift-pipeline/buildah)
note below. (_default:_ quay.io/buildah/stable)
* **DOCKERFILE**: The path to the `Dockerfile` to execute (_default:_
`./Dockerfile`)
* **TLSVERIFY**: Verify the TLS on the registry endpoint (for push/pull to a
Expand Down
2 changes: 1 addition & 1 deletion buildah/buildah.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ spec:
params:
- name: BUILDER_IMAGE
description: The location of the buildah builder image.
default: quay.io/openshift-pipeline/buildah
default: quay.io/buildah/stable
- name: DOCKERFILE
description: Path to the Dockerfile to build.
default: ./Dockerfile
Expand Down
4 changes: 2 additions & 2 deletions s2i/s2i.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ spec:
- name: gen-source
mountPath: /gen-source
- name: build
image: quay.io/openshift-pipeline/buildah
image: quay.io/buildah/stable
workingdir: /gen-source
command: ['buildah', 'bud', '--tls-verify=${inputs.params.TLSVERIFY}', '--layers', '-f', '/gen-source/Dockerfile.gen', '-t', '${outputs.resources.image.url}', '.']
volumeMounts:
Expand All @@ -43,7 +43,7 @@ spec:
privileged: true

- name: push
image: quay.io/openshift-pipeline/buildah
image: quay.io/buildah/stable
command: ['buildah', 'push', '--tls-verify=${inputs.params.TLSVERIFY}', '${outputs.resources.image.url}', 'docker://${outputs.resources.image.url}']
volumeMounts:
- name: varlibcontainers
Expand Down

0 comments on commit 984c3a2

Please sign in to comment.