Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update registry.redhat.io/openshift4/ose-cli:latest docker digest to 65e25ef #427

Merged
merged 2 commits into from
Jan 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.4
version: 0.0.5
appVersion: latest
home: https://github.com/redhat-cop/helm-charts
keywords:
Expand Down
4 changes: 2 additions & 2 deletions charts/tekton-demo/templates/tasks/conditions.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ spec:
params:
- name: revision-type
check:
image: registry.redhat.io/openshift4/ose-cli:latest@sha256:767a5fb58229f519ad61e4f1e78d84eb017d356702a5a16ab23b948b90db27c1
image: registry.redhat.io/openshift4/ose-cli:latest@sha256:65e25efc152a2050be9b119e80238d5a9c3456e97b22e9eb40a835acb2f2bd79
script: |
#!/bin/sh
if [ "$(params.revision-type)" == "feature" ] || [ "$(params.revision-type)" == "develop" ]; then
Expand All @@ -26,7 +26,7 @@ spec:
params:
- name: revision-type
check:
image: registry.redhat.io/openshift4/ose-cli:latest@sha256:767a5fb58229f519ad61e4f1e78d84eb017d356702a5a16ab23b948b90db27c1
image: registry.redhat.io/openshift4/ose-cli:latest@sha256:65e25efc152a2050be9b119e80238d5a9c3456e97b22e9eb40a835acb2f2bd79
script: |
#!/bin/sh
if [ "$(params.revision-type)" == "release" ] || [ "$(params.revision-type)" == "hotfix" ] || [ "$(params.revision-type)" == "patch" ]; then
Expand Down
2 changes: 1 addition & 1 deletion charts/tekton-demo/templates/tasks/task-apply.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ spec:
- name: shared
steps:
- name: helm-apply
image: registry.redhat.io/openshift4/ose-cli:latest@sha256:767a5fb58229f519ad61e4f1e78d84eb017d356702a5a16ab23b948b90db27c1
image: registry.redhat.io/openshift4/ose-cli:latest@sha256:65e25efc152a2050be9b119e80238d5a9c3456e97b22e9eb40a835acb2f2bd79
resources: {}
workingDir: /workspace/source/{{ .Values.pipeline.build.s2i.context }}
script: |
Expand Down
16 changes: 8 additions & 8 deletions charts/tekton-demo/templates/tasks/task-deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ spec:
type: string
steps:
- name: app-create
image: registry.redhat.io/openshift4/ose-cli:latest@sha256:767a5fb58229f519ad61e4f1e78d84eb017d356702a5a16ab23b948b90db27c1
image: registry.redhat.io/openshift4/ose-cli:latest@sha256:65e25efc152a2050be9b119e80238d5a9c3456e97b22e9eb40a835acb2f2bd79
script: |
#!/bin/sh
if [ "$(inputs.params.revision-type)" == "feature" ] || [ "$(inputs.params.revision-type)" == "develop" ]; then
Expand All @@ -51,7 +51,7 @@ spec:
fi

- name: app-docs
image: registry.redhat.io/openshift4/ose-cli:latest@sha256:767a5fb58229f519ad61e4f1e78d84eb017d356702a5a16ab23b948b90db27c1
image: registry.redhat.io/openshift4/ose-cli:latest@sha256:65e25efc152a2050be9b119e80238d5a9c3456e97b22e9eb40a835acb2f2bd79
script: |
#!/bin/sh
if [ "$(inputs.params.revision-type)" == "develop" ]; then
Expand All @@ -72,7 +72,7 @@ spec:
fi

- name: app-expose
image: registry.redhat.io/openshift4/ose-cli:latest@sha256:767a5fb58229f519ad61e4f1e78d84eb017d356702a5a16ab23b948b90db27c1
image: registry.redhat.io/openshift4/ose-cli:latest@sha256:65e25efc152a2050be9b119e80238d5a9c3456e97b22e9eb40a835acb2f2bd79
script: |
#!/bin/sh
if [ "$(inputs.params.revision-type)" == "feature" ] || [ "$(inputs.params.revision-type)" == "develop" ]; then
Expand Down Expand Up @@ -130,7 +130,7 @@ spec:
fi

- name: app-labels
image: registry.redhat.io/openshift4/ose-cli:latest@sha256:767a5fb58229f519ad61e4f1e78d84eb017d356702a5a16ab23b948b90db27c1
image: registry.redhat.io/openshift4/ose-cli:latest@sha256:65e25efc152a2050be9b119e80238d5a9c3456e97b22e9eb40a835acb2f2bd79
script: |
#!/bin/sh
if [ "$(inputs.params.revision-type)" == "feature" ] || [ "$(inputs.params.revision-type)" == "develop" ]; then
Expand All @@ -151,7 +151,7 @@ spec:
fi

- name: app-envs
image: registry.redhat.io/openshift4/ose-cli:latest@sha256:767a5fb58229f519ad61e4f1e78d84eb017d356702a5a16ab23b948b90db27c1
image: registry.redhat.io/openshift4/ose-cli:latest@sha256:65e25efc152a2050be9b119e80238d5a9c3456e97b22e9eb40a835acb2f2bd79
script: |
#!/bin/sh
replace=$(inputs.params.revision-name)
Expand Down Expand Up @@ -180,7 +180,7 @@ spec:
fi

- name: app-probes
image: registry.redhat.io/openshift4/ose-cli:latest@sha256:767a5fb58229f519ad61e4f1e78d84eb017d356702a5a16ab23b948b90db27c1
image: registry.redhat.io/openshift4/ose-cli:latest@sha256:65e25efc152a2050be9b119e80238d5a9c3456e97b22e9eb40a835acb2f2bd79
script: |
#!/bin/sh
if [ "$(inputs.params.revision-type)" == "feature" ] || [ "$(inputs.params.revision-type)" == "develop" ]; then
Expand All @@ -203,7 +203,7 @@ spec:
fi

- name: app-autoscale
image: registry.redhat.io/openshift4/ose-cli:latest@sha256:767a5fb58229f519ad61e4f1e78d84eb017d356702a5a16ab23b948b90db27c1
image: registry.redhat.io/openshift4/ose-cli:latest@sha256:65e25efc152a2050be9b119e80238d5a9c3456e97b22e9eb40a835acb2f2bd79
script: |
#!/bin/sh

Expand Down Expand Up @@ -235,7 +235,7 @@ spec:
fi

- name: app-triggers
image: registry.redhat.io/openshift4/ose-cli:latest@sha256:767a5fb58229f519ad61e4f1e78d84eb017d356702a5a16ab23b948b90db27c1
image: registry.redhat.io/openshift4/ose-cli:latest@sha256:65e25efc152a2050be9b119e80238d5a9c3456e97b22e9eb40a835acb2f2bd79
script: |
#!/bin/sh
if [ "$(inputs.params.revision-type)" == "feature" ] || [ "$(inputs.params.revision-type)" == "develop" ]; then
Expand Down
2 changes: 1 addition & 1 deletion charts/tekton-demo/templates/tasks/task-git-clone.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ spec:
echo -n "$(params.url)" > $(results.url.path)

- name: variables
image: registry.redhat.io/openshift4/ose-cli:latest@sha256:767a5fb58229f519ad61e4f1e78d84eb017d356702a5a16ab23b948b90db27c1
image: registry.redhat.io/openshift4/ose-cli:latest@sha256:65e25efc152a2050be9b119e80238d5a9c3456e97b22e9eb40a835acb2f2bd79
resources: {}
script: |
#!/bin/sh
Expand Down
16 changes: 8 additions & 8 deletions charts/tekton-demo/templates/tasks/task-promote.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ spec:
runAsUser: 0

- name: release-image
image: registry.redhat.io/openshift4/ose-cli:latest@sha256:767a5fb58229f519ad61e4f1e78d84eb017d356702a5a16ab23b948b90db27c1
image: registry.redhat.io/openshift4/ose-cli:latest@sha256:65e25efc152a2050be9b119e80238d5a9c3456e97b22e9eb40a835acb2f2bd79
script: |
#!/bin/sh
replace=$(inputs.params.revision-name)
Expand All @@ -105,7 +105,7 @@ spec:
fi

- name: app-expose
image: registry.redhat.io/openshift4/ose-cli:latest@sha256:767a5fb58229f519ad61e4f1e78d84eb017d356702a5a16ab23b948b90db27c1
image: registry.redhat.io/openshift4/ose-cli:latest@sha256:65e25efc152a2050be9b119e80238d5a9c3456e97b22e9eb40a835acb2f2bd79
script: |
#!/bin/sh
replace=$(inputs.params.revision-name)
Expand Down Expand Up @@ -138,7 +138,7 @@ spec:
fi

- name: app-labels
image: registry.redhat.io/openshift4/ose-cli:latest@sha256:767a5fb58229f519ad61e4f1e78d84eb017d356702a5a16ab23b948b90db27c1
image: registry.redhat.io/openshift4/ose-cli:latest@sha256:65e25efc152a2050be9b119e80238d5a9c3456e97b22e9eb40a835acb2f2bd79
script: |
#!/bin/sh
replace=$(inputs.params.revision-name)
Expand All @@ -153,7 +153,7 @@ spec:
oc label deployment/$appname --overwrite app.revision-author=$(inputs.params.author) -n $environment

- name: app-envs
image: registry.redhat.io/openshift4/ose-cli:latest@sha256:767a5fb58229f519ad61e4f1e78d84eb017d356702a5a16ab23b948b90db27c1
image: registry.redhat.io/openshift4/ose-cli:latest@sha256:65e25efc152a2050be9b119e80238d5a9c3456e97b22e9eb40a835acb2f2bd79
script: |
#!/bin/sh
replace=$(inputs.params.revision-name)
Expand All @@ -168,7 +168,7 @@ spec:
oc set env deployment/$appname --overwrite revision-type=$(inputs.params.revision-type) -n $environment

- name: app-secrets
image: registry.redhat.io/openshift4/ose-cli:latest@sha256:767a5fb58229f519ad61e4f1e78d84eb017d356702a5a16ab23b948b90db27c1
image: registry.redhat.io/openshift4/ose-cli:latest@sha256:65e25efc152a2050be9b119e80238d5a9c3456e97b22e9eb40a835acb2f2bd79
command: ["/bin/bash", "-c"]
args:
- |-
Expand All @@ -179,7 +179,7 @@ spec:
# oc set env deployment/$appname --from secret/input -n {{ .Values.application.environments.production }}

- name: app-probes
image: registry.redhat.io/openshift4/ose-cli:latest@sha256:767a5fb58229f519ad61e4f1e78d84eb017d356702a5a16ab23b948b90db27c1
image: registry.redhat.io/openshift4/ose-cli:latest@sha256:65e25efc152a2050be9b119e80238d5a9c3456e97b22e9eb40a835acb2f2bd79
command: ["/bin/bash", "-c"]
args:
- |-
Expand All @@ -190,7 +190,7 @@ spec:
oc set probe deployment/$appname --readiness --get-url=http://:8080/ --initial-delay-seconds=30 -n {{ .Values.application.environments.production }}

- name: app-autoscale
image: registry.redhat.io/openshift4/ose-cli:latest@sha256:767a5fb58229f519ad61e4f1e78d84eb017d356702a5a16ab23b948b90db27c1
image: registry.redhat.io/openshift4/ose-cli:latest@sha256:65e25efc152a2050be9b119e80238d5a9c3456e97b22e9eb40a835acb2f2bd79
script: |
#!/bin/sh

Expand All @@ -214,7 +214,7 @@ spec:
fi

- name: app-triggers
image: registry.redhat.io/openshift4/ose-cli:latest@sha256:767a5fb58229f519ad61e4f1e78d84eb017d356702a5a16ab23b948b90db27c1
image: registry.redhat.io/openshift4/ose-cli:latest@sha256:65e25efc152a2050be9b119e80238d5a9c3456e97b22e9eb40a835acb2f2bd79
command: ["/bin/bash", "-c"]
args:
- |-
Expand Down
2 changes: 1 addition & 1 deletion charts/tekton-demo/templates/tasks/task-status.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ spec:
description: Contains the author username
steps:
- name: variables
image: registry.redhat.io/openshift4/ose-cli:latest@sha256:767a5fb58229f519ad61e4f1e78d84eb017d356702a5a16ab23b948b90db27c1
image: registry.redhat.io/openshift4/ose-cli:latest@sha256:65e25efc152a2050be9b119e80238d5a9c3456e97b22e9eb40a835acb2f2bd79
resources: {}
workingDir: $(workspaces.source.path)
script: |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ spec:
description: revision name
steps:
- name: test-performance
image: registry.redhat.io/openshift4/ose-cli:latest@sha256:767a5fb58229f519ad61e4f1e78d84eb017d356702a5a16ab23b948b90db27c1
image: registry.redhat.io/openshift4/ose-cli:latest@sha256:65e25efc152a2050be9b119e80238d5a9c3456e97b22e9eb40a835acb2f2bd79
resources: {}
script: |
#!/bin/bash
Expand Down