Skip to content

Commit

Permalink
Merge pull request #449 from redhat-cop/renovate/registry.redhat.io-r…
Browse files Browse the repository at this point in the history
…hel8-buildah

chore(deps): update registry.redhat.io/rhel8/buildah docker digest to a70cfab
  • Loading branch information
garethahealy authored Apr 2, 2024
2 parents a4e46a3 + ad69d46 commit 1980462
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion charts/tekton-demo/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ description: This is an example of a pipeline developed in Tekton, the peaceful
It contains the main steps of a continuous software delivery process. It enforces
a strict semantic version validation strategy, managing tag increments for you.
Develop, Features, releases, patches and hotfixes flows are supported.
version: 0.0.11
version: 0.0.12
appVersion: latest
home: https://github.com/redhat-cop/helm-charts
keywords:
Expand Down
4 changes: 2 additions & 2 deletions charts/tekton-demo/templates/tasks/task-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ spec:
steps:

- name: image-build
image: registry.redhat.io/rhel8/buildah@sha256:3c2ea396a114221575a4031d90d28c43563f7b96288374e0ba8b22de3ed97b5a
image: registry.redhat.io/rhel8/buildah@sha256:a70cfab267df59020cc6a6cea6a4661db65240e2e919f61bed54e2aa87a9bbf0
workingDir: /workspace/source/{{ .Values.pipeline.build.s2i.context }}
command: ['buildah', 'bud', '--tls-verify=$(inputs.params.TLSVERIFY)', '--layers', '-f', 'Dockerfile', '-t', 'image-registry.openshift-image-registry.svc:5000/{{ .Values.application.environments.development }}/{{ .Values.application.name }}-development:$(inputs.params.revision-name)', '.']
resources: {}
Expand All @@ -51,7 +51,7 @@ spec:
privileged: true

- name: image-push
image: registry.redhat.io/rhel8/buildah@sha256:3c2ea396a114221575a4031d90d28c43563f7b96288374e0ba8b22de3ed97b5a
image: registry.redhat.io/rhel8/buildah@sha256:a70cfab267df59020cc6a6cea6a4661db65240e2e919f61bed54e2aa87a9bbf0
command: ['buildah', 'push', '--tls-verify=$(inputs.params.TLSVERIFY)', '--digestfile', '$(workspaces.source.path)/image-digest', 'image-registry.openshift-image-registry.svc:5000/{{ .Values.application.environments.development }}/{{ .Values.application.name }}-development:$(inputs.params.revision-name)', 'docker://image-registry.openshift-image-registry.svc:5000/{{ .Values.application.environments.development }}/{{ .Values.application.name }}-development:$(inputs.params.revision-name)']
volumeMounts:
- name: varlibcontainers
Expand Down
6 changes: 3 additions & 3 deletions charts/tekton-demo/templates/tasks/task-docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ spec:
steps:

- name: image-build
image: registry.redhat.io/rhel8/buildah@sha256:3c2ea396a114221575a4031d90d28c43563f7b96288374e0ba8b22de3ed97b5a
image: registry.redhat.io/rhel8/buildah@sha256:a70cfab267df59020cc6a6cea6a4661db65240e2e919f61bed54e2aa87a9bbf0
workingDir: /workspace/source/{{ .Values.pipeline.build.s2i.context }}/docs
resources: {}
script: |
Expand All @@ -61,7 +61,7 @@ spec:
privileged: true

- name: image-push
image: registry.redhat.io/rhel8/buildah@sha256:3c2ea396a114221575a4031d90d28c43563f7b96288374e0ba8b22de3ed97b5a
image: registry.redhat.io/rhel8/buildah@sha256:a70cfab267df59020cc6a6cea6a4661db65240e2e919f61bed54e2aa87a9bbf0
script: |
#!/bin/sh
if [ "$(inputs.params.revision-type)" == "develop" ]; then
Expand All @@ -75,7 +75,7 @@ spec:
privileged: true

- name: image-digest
image: registry.redhat.io/rhel8/buildah@sha256:3c2ea396a114221575a4031d90d28c43563f7b96288374e0ba8b22de3ed97b5a
image: registry.redhat.io/rhel8/buildah@sha256:a70cfab267df59020cc6a6cea6a4661db65240e2e919f61bed54e2aa87a9bbf0
script: |
#!/bin/sh
printf %s "null" >> /tekton/results/digest
Expand Down

0 comments on commit 1980462

Please sign in to comment.