Skip to content

Commit 6209500

Browse files
committed
Add 1.21 files
Signed-off-by: divyansh42 <[email protected]>
1 parent e69e5e2 commit 6209500

36 files changed

+26
-1048
lines changed

.github/workflows/update-sources.yaml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
# Generated for Konflux Application openshift-pipelines-operator-1.20 by openshift-pipelines/hack. DO NOT EDIT
2-
name: update-sources-release-v1.20.x
1+
# Generated for Konflux Application openshift-pipelines-operator-1.21 by openshift-pipelines/hack. DO NOT EDIT
2+
name: update-sources-release-v1.21.x
33

44
on:
55
workflow_dispatch: {}
@@ -18,7 +18,7 @@ jobs:
1818
- name: Checkout the current repo
1919
uses: actions/checkout@v4
2020
with:
21-
ref: release-v1.20.x
21+
ref: release-v1.21.x
2222

2323
- name: Clone tektoncd/operator
2424
run: |
@@ -61,7 +61,7 @@ jobs:
6161
run: |
6262
git config user.name openshift-pipelines-bot
6363
git config user.email [email protected]
64-
git checkout -b actions/update/sources-release-v1.20.x
64+
git checkout -b actions/update/sources-release-v1.21.x
6565
touch head
6666
pushd upstream
6767
OLD_COMMIT=$(cat ../head)
@@ -83,22 +83,22 @@ jobs:
8383
fi
8484
8585
git commit -F- <<EOF
86-
[bot] Update release-v1.20.x from tektoncd/operator to ${NEW_COMMIT}
86+
[bot] Update release-v1.21.x from tektoncd/operator to ${NEW_COMMIT}
8787
8888
$ git diff --stat ${NEW_COMMIT}..${OLD_COMMIT}
8989
$(cat /tmp/diff.txt | sed 's/^/ /' | head -c 55555)
9090
9191
https://github.com/tektoncd/operator/compare/${NEW_COMMIT}..${OLD_COMMIT}
9292
EOF
9393
94-
git push -f origin actions/update/sources-release-v1.20.x
94+
git push -f origin actions/update/sources-release-v1.21.x
9595
96-
if [ "$(gh pr list --base release-v1.20.x --head actions/update/sources-release-v1.20.x --json url --jq 'length')" = "0" ]; then
96+
if [ "$(gh pr list --base release-v1.21.x --head actions/update/sources-release-v1.21.x --json url --jq 'length')" = "0" ]; then
9797
echo "creating PR..."
98-
gh pr create -B release-v1.20.x -H actions/update/sources-release-v1.20.x --label=automated --label=upstream --fill
98+
gh pr create -B release-v1.21.x -H actions/update/sources-release-v1.21.x --label=automated --label=upstream --fill
9999
else
100100
echo "a PR already exists, editing..."
101-
gh pr edit --title "[bot] Update release-v1.20.x from tektoncd/operator to ${NEW_COMMIT}" --body "$(cat /tmp/diff.txt | sed 's/^/ /' | head -c 55555)"
101+
gh pr edit --title "[bot] Update release-v1.21.x from tektoncd/operator to ${NEW_COMMIT}" --body "$(cat /tmp/diff.txt | sed 's/^/ /' | head -c 55555)"
102102
fi
103103
env:
104104
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.konflux/dockerfiles/operator.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ COPY head ${KO_DATA_PATH}/HEAD
2525
LABEL \
2626
com.redhat.component="openshift-pipelines-rhel9-operator-container" \
2727
name="openshift-pipelines/pipelines-rhel9-operator" \
28-
version="1.20.0" \
28+
version="1.21.0" \
2929
summary="Red Hat OpenShift Pipelines Operator" \
3030
maintainer="[email protected]" \
3131
description="Red Hat OpenShift Pipelines Operator" \

.konflux/dockerfiles/proxy.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ COPY head ${KO_DATA_PATH}/HEAD
2323
LABEL \
2424
com.redhat.component="openshift-pipelines-operator-proxy-rhel9-container" \
2525
name="openshift-pipelines/pipelines-operator-proxy-rhel9" \
26-
version="1.20.0" \
26+
version="1.21.0" \
2727
summary="Red Hat OpenShift Pipelines Operator Proxy" \
2828
maintainer="[email protected]" \
2929
description="Red Hat OpenShift Pipelines Operator Proxy" \

.konflux/dockerfiles/webhook.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ COPY head ${KO_DATA_PATH}/HEAD
2525
LABEL \
2626
com.redhat.component="openshift-pipelines-operator-webhook-rhel9-container" \
2727
name="openshift-pipelines/pipelines-operator-webhook-rhel9" \
28-
version="1.20.0" \
28+
version="1.21.0" \
2929
summary="Red Hat OpenShift Pipelines Operator Webhook" \
3030
maintainer="[email protected]" \
3131
description="Red Hat OpenShift Pipelines Operator Webhook" \

.konflux/olm-catalog/bundle/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,12 @@ LABEL operators.operatorframework.io.bundle.manifests.v1=manifests/
1010
LABEL operators.operatorframework.io.bundle.metadata.v1=metadata/
1111
LABEL operators.operatorframework.io.bundle.package.v1=serverless-operator
1212
LABEL operators.operatorframework.io.bundle.channel.default.v1="latest"
13-
LABEL operators.operatorframework.io.bundle.channels.v1="latest,pipelines-1.20"
13+
LABEL operators.operatorframework.io.bundle.channels.v1="latest,pipelines-1.21"
1414

1515
LABEL \
1616
com.redhat.component="openshift-pipelines-operator-bundle-container" \
1717
name="openshift-pipelines/pipelines-operator-bundle-container" \
18-
version="1.20.1" \
18+
version="1.21.0" \
1919
summary="Red Hat OpenShift Pipelines Operator Bundle" \
2020
maintainer="[email protected]" \
2121
description="Red Hat OpenShift Pipelines Operator Bundle" \

.konflux/olm-catalog/bundle/metadata/annotations.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ annotations:
44
operators.operatorframework.io.bundle.manifests.v1: manifests/
55
operators.operatorframework.io.bundle.metadata.v1: metadata/
66
operators.operatorframework.io.bundle.package.v1: openshift-pipelines-operator-rh
7-
operators.operatorframework.io.bundle.channels.v1: latest,pipelines-1.20
7+
operators.operatorframework.io.bundle.channels.v1: latest,pipelines-1.21
88
operators.operatorframework.io.bundle.channel.default.v1: latest
99
operators.operatorframework.io.metrics.builder: operator-sdk-v1.37.0
1010
operators.operatorframework.io.metrics.mediatype.v1: metrics+v1

.konflux/olm-catalog/index/v4.14/Dockerfile.catalog

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ LABEL operators.operatorframework.io.bundle.manifests.v1=manifests/
1212
LABEL operators.operatorframework.io.bundle.metadata.v1=metadata/
1313
LABEL operators.operatorframework.io.bundle.package.v1=openshift-pipelines-operator-rh
1414
LABEL operators.operatorframework.io.bundle.channel.default.v1="latest"
15-
LABEL operators.operatorframework.io.bundle.channels.v1="latest,pipelines-1.20"
15+
LABEL operators.operatorframework.io.bundle.channels.v1="latest,pipelines-1.21"
1616
LABEL operators.operatorframework.io.metrics.builder=operator-sdk-v1.37.0
1717
LABEL operators.operatorframework.io.metrics.mediatype.v1=metrics+v1
1818
LABEL operators.operatorframework.io.index.configs.v1=/configs

.konflux/olm-catalog/index/v4.15/Dockerfile.catalog

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ LABEL operators.operatorframework.io.bundle.manifests.v1=manifests/
1212
LABEL operators.operatorframework.io.bundle.metadata.v1=metadata/
1313
LABEL operators.operatorframework.io.bundle.package.v1=openshift-pipelines-operator-rh
1414
LABEL operators.operatorframework.io.bundle.channel.default.v1="latest"
15-
LABEL operators.operatorframework.io.bundle.channels.v1="latest,pipelines-1.20"
15+
LABEL operators.operatorframework.io.bundle.channels.v1="latest,pipelines-1.21"
1616
LABEL operators.operatorframework.io.metrics.builder=operator-sdk-v1.37.0
1717
LABEL operators.operatorframework.io.metrics.mediatype.v1=metrics+v1
1818
LABEL operators.operatorframework.io.index.configs.v1=/configs

.konflux/olm-catalog/index/v4.16/Dockerfile.catalog

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ LABEL operators.operatorframework.io.bundle.manifests.v1=manifests/
1313
LABEL operators.operatorframework.io.bundle.metadata.v1=metadata/
1414
LABEL operators.operatorframework.io.bundle.package.v1=openshift-pipelines-operator-rh
1515
LABEL operators.operatorframework.io.bundle.channel.default.v1="latest"
16-
LABEL operators.operatorframework.io.bundle.channels.v1="latest,pipelines-1.20"
16+
LABEL operators.operatorframework.io.bundle.channels.v1="latest,pipelines-1.21"
1717
LABEL operators.operatorframework.io.metrics.builder=operator-sdk-v1.37.0
1818
LABEL operators.operatorframework.io.metrics.mediatype.v1=metrics+v1
1919
LABEL operators.operatorframework.io.index.configs.v1=/configs

.konflux/olm-catalog/index/v4.17/Dockerfile.catalog

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ LABEL operators.operatorframework.io.bundle.manifests.v1=manifests/
1212
LABEL operators.operatorframework.io.bundle.metadata.v1=metadata/
1313
LABEL operators.operatorframework.io.bundle.package.v1=openshift-pipelines-operator-rh
1414
LABEL operators.operatorframework.io.bundle.channel.default.v1="latest"
15-
LABEL operators.operatorframework.io.bundle.channels.v1="latest,pipelines-1.20"
15+
LABEL operators.operatorframework.io.bundle.channels.v1="latest,pipelines-1.21"
1616
LABEL operators.operatorframework.io.metrics.builder=operator-sdk-v1.37.0
1717
LABEL operators.operatorframework.io.metrics.mediatype.v1=metrics+v1
1818
LABEL operators.operatorframework.io.index.configs.v1=/configs

0 commit comments

Comments
 (0)