Skip to content
This repository was archived by the owner on Oct 7, 2024. It is now read-only.

Commit afbbe8f

Browse files
authored
Update Golang dependencies (#292)
Resolves: #291 Resolves: #293 Signed-off-by: Sergio Arroutbi <sarroutb@redhat.com>
1 parent a9a3889 commit afbbe8f

File tree

11 files changed

+196
-112
lines changed

11 files changed

+196
-112
lines changed

.github/workflows/deploy.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- name: Set up Go
2323
uses: actions/setup-go@v5
2424
with:
25-
go-version: '1.21.7'
25+
go-version: '1.22.2'
2626

2727
- name: Build
2828
run: make build
@@ -43,5 +43,5 @@ jobs:
4343
- name: Deploy and Scorecard
4444
run: |
4545
sh .github/workflows/scripts/retrieve_and_run_operator_sdk.sh \
46-
"v1.32.0" "5m" "quay.io/sec-eng-special/tang-operator-bundle" \
46+
"v1.33.0" "5m" "quay.io/sec-eng-special/tang-operator-bundle" \
4747
"${GITHUB_HEAD_REF}"

.github/workflows/scripts/retrieve_and_run_operator_sdk.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
#
1616
set -x -e
1717

18-
OPERATOR_SDK_DEFAULT_RELEASE_VERSION="v1.32.0"
18+
OPERATOR_SDK_DEFAULT_RELEASE_VERSION="v1.33.0"
1919
DEFAULT_BUNDLE_IMG="quay.io/sec-eng-special/tang-operator-bundle"
2020
DEFAULT_TIMEOUT="5m"
2121
DEFAULT_GITHUB_BRANCH="main"
@@ -101,6 +101,6 @@ mv "operator-sdk_${OS}_${ARCH}" "$(pwd)/operator-sdk"
101101
chmod +x "$(pwd)/operator-sdk"
102102
"$(pwd)"/operator-sdk olm install --timeout "${TIMEOUT}"
103103
"$(pwd)"/operator-sdk olm status
104-
"$(pwd)"/operator-sdk run bundle --timeout "${TIMEOUT}" "${BUNDLE_IMG_VERSION}"
104+
"$(pwd)"/operator-sdk run bundle --verbose --timeout "${TIMEOUT}" "${BUNDLE_IMG_VERSION}"
105105
"$(pwd)"/operator-sdk olm status
106106
"$(pwd)"/operator-sdk scorecard --wait-time="${TIMEOUT}" "${BUNDLE_IMG_VERSION}"

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# To re-generate a bundle for another specific version without changing the standard setup, you can:
44
# - use the VERSION as arg of the bundle target (e.g make bundle VERSION=0.0.2)
55
# - use environment variables to overwrite this value (e.g export VERSION=0.0.2)
6-
VERSION ?= 1.0.8
6+
VERSION ?= 1.0.9
77

88
# CHANNELS define the bundle channels used in the bundle.
99
# Add a new line here if you would like to change its default config. (E.g CHANNELS = "candidate,fast,stable")

PROJECT

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# More info: https://book.kubebuilder.io/reference/project-config.html
55
domain: redhat.com
66
layout:
7-
- go.kubebuilder.io/v3
7+
- go.kubebuilder.io/v4
88
plugins:
99
manifests.sdk.operatorframework.io/v2: {}
1010
scorecard.sdk.operatorframework.io/v2: {}

README.md

Lines changed: 61 additions & 61 deletions
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,7 @@ Tang operator-bundle are:
9393
- v1.0.6: GA release. Fix Url to URL in CRD. GA Released Version in OpenShift
9494
- v1.0.7: GA re-release. Fix channel ("alpha" to "stable")
9595
- v1.0.8: ServiceType / ClusterIP configuration through TangServer CR
96+
- v1.0.9: Golang dependencies update
9697

9798
## Installation
9899

@@ -116,23 +117,23 @@ operator-sdk installation is described in the [Links](#links) section.
116117

117118
In order to deploy the latest version of the Tang operator, check latest released
118119
version in the [Versions](#versions) section, and install the appropriate version
119-
bundle. For example, in case latest version is **1.0.8**, the command to execute
120+
bundle. For example, in case latest version is **1.0.9**, the command to execute
120121
will be:
121122

122123
```bash
123-
$ operator-sdk run bundle quay.io/sec-eng-special/tang-operator-bundle:v1.0.8
124-
INFO[0008] Successfully created registry pod: quay-io-sec-eng-special-tang-operator-bundle-v1.0.8
124+
$ operator-sdk run bundle quay.io/sec-eng-special/tang-operator-bundle:v1.0.9
125+
INFO[0008] Successfully created registry pod: quay-io-sec-eng-special-tang-operator-bundle-v1.0.9
125126
INFO[0009] Created CatalogSource: tang-operator-catalog
126127
INFO[0009] OperatorGroup "operator-sdk-og" created
127-
INFO[0009] Created Subscription: tang-operator-v1.0.8-sub
128-
INFO[0011] Approved InstallPlan install-lqf9f for the Subscription: tang-operator-v1.0.8-sub
128+
INFO[0009] Created Subscription: tang-operator-v1.0.9-sub
129+
INFO[0011] Approved InstallPlan install-lqf9f for the Subscription: tang-operator-v1.0.9-sub
129130
INFO[0011] Waiting for ClusterServiceVersion to reach 'Succeeded' phase
130-
INFO[0012] Waiting for ClusterServiceVersion "default/tang-operator.v1.0.8"
131-
INFO[0018] Found ClusterServiceVersion "default/tang-operator.v1.0.8" phase: Pending
132-
INFO[0020] Found ClusterServiceVersion "default/tang-operator.v1.0.8" phase: InstallReady
133-
INFO[0021] Found ClusterServiceVersion "default/tang-operator.v1.0.8" phase: Installing
134-
INFO[0031] Found ClusterServiceVersion "default/tang-operator.v1.0.8" phase: Succeeded
135-
INFO[0031] OLM has successfully installed "tang-operator.v1.0.8"
131+
INFO[0012] Waiting for ClusterServiceVersion "default/tang-operator.v1.0.9"
132+
INFO[0018] Found ClusterServiceVersion "default/tang-operator.v1.0.9" phase: Pending
133+
INFO[0020] Found ClusterServiceVersion "default/tang-operator.v1.0.9" phase: InstallReady
134+
INFO[0021] Found ClusterServiceVersion "default/tang-operator.v1.0.9" phase: Installing
135+
INFO[0031] Found ClusterServiceVersion "default/tang-operator.v1.0.9" phase: Succeeded
136+
INFO[0031] OLM has successfully installed "tang-operator.v1.0.9"
136137
```
137138
To install latest multi-arch image, execute:
138139
```bash
@@ -148,10 +149,10 @@ your cluster takes long time to deploy. To do so, the option **--timeout** can b
148149
used (if not used, default time is 2m, which stands for two minutes):
149150

150151
```bash
151-
$ operator-sdk run bundle --timeout 3m quay.io/sec-eng-special/tang-operator-bundle:v1.0.8
152-
INFO[0008] Successfully created registry pod: quay-io-sec-eng-special-tang-operator-bundle-v1.0.8
152+
$ operator-sdk run bundle --timeout 3m quay.io/sec-eng-special/tang-operator-bundle:v1.0.9
153+
INFO[0008] Successfully created registry pod: quay-io-sec-eng-special-tang-operator-bundle-v1.0.9
153154
...
154-
INFO[0031] OLM has successfully installed "tang-operator.v1.0.8"
155+
INFO[0031] OLM has successfully installed "tang-operator.v1.0.9"
155156
```
156157

157158
Additionally, correct Tang operator installation can be observed if an output like
@@ -161,7 +162,7 @@ the following is observed when prompting for installed pods:
161162
$ oc get pods
162163
NAME READY STATUS RESTARTS AGE
163164
dbbd1837106ec169542546e7ad251b95d27c3542eb0409c1e 0/1 Completed 0 82s
164-
quay-io-tang-operator-bundle-v1.0.8 1/1 Running 0 90s
165+
quay-io-tang-operator-bundle-v1.0.9 1/1 Running 0 90s
165166
tang-operator-controller-manager-5c9488d8dd-mgmsf 2/2 Running 0 52s
166167
```
167168

@@ -199,8 +200,7 @@ Note the **Running** state for the `tangserver` pods.
199200
## Compilation
200201

201202
Requirements for tang-operator compilation is as follows:
202-
* Go compiler (v1.19.6+). Recommended version: v1.21.7. **v1.22.0 does not work** (yet), possibly
203-
due to this [issue](https://github.com/golang/go/issues/64812).
203+
* Go compiler (v1.19.6+). Recommended version: v1.22.2.
204204
* Docker (v24.0.7+ recommended). Podman (v4.9.0+ recommended) can be used as an alternative to Docker.
205205

206206
Compilation of Tang operator needs to be performed in top directory, by executing
@@ -212,33 +212,33 @@ to be released, it is recommended to increase version appropriately.
212212
In this case, same version is used. Last released version can be observed in
213213
[Versions](#versions) section.
214214

215-
To summarize, taking into account that the last released version is **v1.0.8**,
215+
To summarize, taking into account that the last released version is **v1.0.9**,
216216
compilation can be done with next command:
217217

218218
```bash
219-
$ make docker-build docker-push IMG="quay.io/sec-eng-special/tang-operator:v1.0.8"
219+
$ make docker-build docker-push IMG="quay.io/sec-eng-special/tang-operator:v1.0.9"
220220
...
221221
Successfully built 4a88ba8e6426
222-
Successfully tagged sec-eng-special/tang-operator:v1.0.8
223-
docker push sec-eng-special/tang-operator:v1.0.8
222+
Successfully tagged sec-eng-special/tang-operator:v1.0.9
223+
docker push sec-eng-special/tang-operator:v1.0.9
224224
The push refers to repository [quay.io/sec-eng-special/tang-operator]
225-
7910991.0.8a: Pushed
225+
7910991.0.9a: Pushed
226226
417cb9b79ade: Layer already exists
227-
v1.0.8: digest: sha256:c97bed08ab71556542602b008888bdf23ce4afd86228a07 size: 739
227+
v1.0.9: digest: sha256:c97bed08ab71556542602b008888bdf23ce4afd86228a07 size: 739
228228
```
229229

230230
It is possible to use `podman` instead of `docker`:
231231

232232
```bash
233-
$ make podman-build podman-push IMG="quay.io/sec-eng-special/tang-operator:v1.0.8"
233+
$ make podman-build podman-push IMG="quay.io/sec-eng-special/tang-operator:v1.0.9"
234234
...
235235
Successfully built 4a88ba8e6426
236-
Successfully tagged sec-eng-special/tang-operator:v1.0.8
237-
podman push sec-eng-special/tang-operator:v1.0.8
236+
Successfully tagged sec-eng-special/tang-operator:v1.0.9
237+
podman push sec-eng-special/tang-operator:v1.0.9
238238
The push refers to repository [quay.io/sec-eng-special/tang-operator]
239-
7910991.0.8a: Pushed
239+
7910991.0.9a: Pushed
240240
417cb9b79ade: Layer already exists
241-
v1.0.8: digest: sha256:c97bed08ab71556542602b008888bdf23ce4afd86228a07 size: 739
241+
v1.0.9: digest: sha256:c97bed08ab71556542602b008888bdf23ce4afd86228a07 size: 739
242242
```
243243

244244
In case a new release is planned to be done, the steps to follow will be:
@@ -248,29 +248,29 @@ In case a new release is planned to be done, the steps to follow will be:
248248
```bash
249249
$ git diff Makefile
250250
diff --git a/Makefile b/Makefile
251-
index 9a41c6a..db12a82 1.0.84
251+
index 9a41c6a..db12a82 100644
252252
--- a/Makefile
253253
+++ b/Makefile
254254
@@ -3,7 +3,7 @@
255255
# To re-generate a bundle for another specific version without changing the
256256
# standard setup, you can:
257-
# - use the VERSION as arg of the bundle target (e.g make bundle VERSION=1.0.8)
258-
# - use environment variables to overwrite this value (e.g export VERSION=1.0.8)
259-
-VERSION ?= 1.0.6
260-
+VERSION ?= 1.0.8
257+
# - use the VERSION as arg of the bundle target (e.g. make bundle VERSION=1.0.9)
258+
# - use environment variables to overwrite this value (e.g. export VERSION=1.0.9)
259+
-VERSION ?= 1.0.8
260+
+VERSION ?= 1.0.9
261261
```
262262

263263
Apart from previous changes, it is recommended to generate a "latest" tag for tang-operator bundle:
264264

265265
```bash
266-
$ docker tag quay.io/sec-eng-special/tang-operator-bundle:v1.0.8 quay.io/sec-eng-special/tang-operator-bundle:latest
266+
$ docker tag quay.io/sec-eng-special/tang-operator-bundle:v1.0.9 quay.io/sec-eng-special/tang-operator-bundle:latest
267267
$ docker push quay.io/sec-eng-special/tang-operator-bundle:latest
268268
```
269269

270270
In case `podman` is being used:
271271

272272
```bash
273-
$ podman tag quay.io/sec-eng-special/tang-operator-bundle:v1.0.8 quay.io/sec-eng-special/tang-operator-bundle:latest
273+
$ podman tag quay.io/sec-eng-special/tang-operator-bundle:v1.0.9 quay.io/sec-eng-special/tang-operator-bundle:latest
274274
$ podman push quay.io/sec-eng-special/tang-operator-bundle:latest
275275
```
276276

@@ -280,28 +280,28 @@ Compile Tang operator code, specifying new version,
280280
by using **make docker-build** command:
281281

282282
```bash
283-
$ make docker-build docker-push IMG="quay.io/sec-eng-special/tang-operator:v1.0.8"
283+
$ make docker-build docker-push IMG="quay.io/sec-eng-special/tang-operator:v1.0.9"
284284
...
285-
Successfully tagged sec-eng-special/tang-operator:v1.0.8
286-
docker push sec-eng-special/tang-operator:v1.0.8
285+
Successfully tagged sec-eng-special/tang-operator:v1.0.9
286+
docker push sec-eng-special/tang-operator:v1.0.9
287287
The push refers to repository [quay.io/sec-eng-special/tang-operator]
288288
9ff8a4099c67: Pushed
289289
417cb9b79ade: Layer already exists
290-
v1.0.8: digest: sha256:01620ab19faae54fb382a2ff285f589cf0bde6e168f14f07 size: 739
290+
v1.0.9: digest: sha256:01620ab19faae54fb382a2ff285f589cf0bde6e168f14f07 size: 739
291291
```
292292

293293
And, in case `podman` is being used instead of `docker`:
294294

295295
```bash
296-
$ make podman-build podman-push IMG="quay.io/sec-eng-special/tang-operator:v1.0.8"
296+
$ make podman-build podman-push IMG="quay.io/sec-eng-special/tang-operator:v1.0.9"
297297
...
298298
Successfully built 4a88ba8e6426
299-
Successfully tagged sec-eng-special/tang-operator:v1.0.8
300-
podman push sec-eng-special/tang-operator:v1.0.8
299+
Successfully tagged sec-eng-special/tang-operator:v1.0.9
300+
podman push sec-eng-special/tang-operator:v1.0.9
301301
The push refers to repository [quay.io/sec-eng-special/tang-operator]
302-
7910991.0.8a: Pushed
302+
7910991.0.9a: Pushed
303303
417cb9b79ade: Layer already exists
304-
v1.0.8: digest: sha256:c97bed08ab71556542602b008888bdf23ce4afd86228a07 size: 739
304+
v1.0.9: digest: sha256:c97bed08ab71556542602b008888bdf23ce4afd86228a07 size: 739
305305
```
306306

307307
- <ins>Bundle push</ins>:
@@ -311,15 +311,15 @@ the bundle with **make bundle**, specifying appropriate image,
311311
and push it with **make bundle-build bundle-push**:
312312

313313
```bash
314-
$ make bundle IMG="quay.io/sec-eng-special/tang-operator:v1.0.8"
315-
$ make bundle-build bundle-push BUNDLE_IMG="quay.io/sec-eng-special/tang-operator-bundle:v1.0.8"
314+
$ make bundle IMG="quay.io/sec-eng-special/tang-operator:v1.0.9"
315+
$ make bundle-build bundle-push BUNDLE_IMG="quay.io/sec-eng-special/tang-operator-bundle:v1.0.9"
316316
...
317-
docker push sec-eng-special/tang-operator-bundle:v1.0.8
317+
docker push sec-eng-special/tang-operator-bundle:v1.0.9
318318
The push refers to repository [quay.io/sec-eng-special/tang-operator-bundle]
319319
02e3768cfc56: Pushed
320320
df0c8060d328: Pushed
321321
84774958bcf4: Pushed
322-
v1.0.8: digest: sha256:925c2f844f941db2b53ce45cba9db7ee0be613321da8f0f05d size: 939
322+
v1.0.9: digest: sha256:925c2f844f941db2b53ce45cba9db7ee0be613321da8f0f05d size: 939
323323
make[1]: Leaving directory '/home/user/RedHat/TASKS/TANG_OPERATOR/tang-operator'
324324
```
325325

@@ -328,15 +328,15 @@ In case the operator bundle is required to be pushed, generate the bundle with *
328328
specifying appropriate image, and push it with **make podman-bundle-build podman-bundle-push**:
329329

330330
```bash
331-
$ make bundle IMG="quay.io/sec-eng-special/tang-operator:v1.0.8"
332-
$ make podman-bundle-build podman-bundle-push BUNDLE_IMG="quay.io/sarroutb/tang-operator-bundle:v1.0.8"
331+
$ make bundle IMG="quay.io/sec-eng-special/tang-operator:v1.0.9"
332+
$ make podman-bundle-build podman-bundle-push BUNDLE_IMG="quay.io/sarroutb/tang-operator-bundle:v1.0.9"
333333
...
334-
podman push sec-eng-special/tang-operator-bundle:v1.0.8
334+
podman push sec-eng-special/tang-operator-bundle:v1.0.9
335335
The push refers to repository [quay.io/sec-eng-special/tang-operator-bundle]
336336
02e3768cfc56: Pushed
337337
df0c8060d328: Pushed
338338
84774958bcf4: Pushed
339-
v1.0.8: digest: sha256:925c2f844f941db2b53ce45cba9db7ee0be613321da8f0f05d size: 939
339+
v1.0.9: digest: sha256:925c2f844f941db2b53ce45cba9db7ee0be613321da8f0f05d size: 939
340340
make[1]: Leaving directory '/home/user/RedHat/TASKS/TANG_OPERATOR/tang-operator'
341341
```
342342

@@ -376,15 +376,15 @@ In order to cross compile tang-operator, prepend **GOARCH** with required archit
376376
**make docker-build**:
377377

378378
```bash
379-
$ GOARCH=ppc64le make docker-build docker-push IMG="quay.io/sec-eng-special/tang-operator:v1.0.8"
379+
$ GOARCH=ppc64le make docker-build docker-push IMG="quay.io/sec-eng-special/tang-operator:v1.0.9"
380380
...
381381
Successfully built 4a88ba8e6426
382-
Successfully tagged sec-eng-special/tang-operator:v1.0.8
383-
docker push sec-eng-special/tang-operator:v1.0.8
382+
Successfully tagged sec-eng-special/tang-operator:v1.0.9
383+
docker push sec-eng-special/tang-operator:v1.0.9
384384
The push refers to repository [quay.io/sec-eng-special/tang-operator]
385-
7910991.0.8a: Pushed
385+
7910991.0.9a: Pushed
386386
417cb9b79ade: Layer already exists
387-
v1.0.8: digest: sha256:c97bed08ab71556542602b008888bdf23ce4afd86228a07 size: 739
387+
v1.0.9: digest: sha256:c97bed08ab71556542602b008888bdf23ce4afd86228a07 size: 739
388388
```
389389
Examples of architectures to cross-compile are:
390390
* `ppc64le`
@@ -401,9 +401,9 @@ recommended way:
401401

402402
```bash
403403
$ operator-sdk cleanup tang-operator
404-
INFO[0001] subscription "tang-operator-v1.0.8-sub" deleted
404+
INFO[0001] subscription "tang-operator-v1.0.9-sub" deleted
405405
INFO[0001] customresourcedefinition "tangservers.daemons.redhat.com" deleted
406-
INFO[0002] clusterserviceversion "tang-operator.v1.0.8" deleted
406+
INFO[0002] clusterserviceversion "tang-operator.v1.0.9" deleted
407407
INFO[0002] catalogsource "tang-operator-catalog" deleted
408408
INFO[0002] operatorgroup "operator-sdk-og" deleted
409409
INFO[0002] Operator "tang-operator" uninstalled
@@ -493,7 +493,7 @@ However, scorecard tests can be executed manually. In order to execute these tes
493493
run next command:
494494

495495
```bash
496-
$ operator-sdk scorecard -w 60s quay.io/sec-eng-special/tang-operator-bundle:v1.0.8
496+
$ operator-sdk scorecard -w 60s quay.io/sec-eng-special/tang-operator-bundle:v1.0.9
497497
...
498498
Results:
499499
Name: olm-status-descriptors
@@ -520,7 +520,7 @@ Name: olm-bundle-validation
520520
State: pass
521521
```
522522

523-
As it can be observed, execution of operator-sdk scorecard tests are passing successfully in latest released version (v1.0.8).
523+
As it can be observed, execution of operator-sdk scorecard tests are passing successfully in latest released version (v1.0.9).
524524

525525
## Links
526526

bundle.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ LABEL operators.operatorframework.io.bundle.package.v1=tang-operator
88
LABEL operators.operatorframework.io.bundle.channels.v1=stable
99
LABEL operators.operatorframework.io.metrics.builder=operator-sdk-v1.33.0
1010
LABEL operators.operatorframework.io.metrics.mediatype.v1=metrics+v1
11-
LABEL operators.operatorframework.io.metrics.project_layout=go.kubebuilder.io/v3
11+
LABEL operators.operatorframework.io.metrics.project_layout=go.kubebuilder.io/v4
1212

1313
# Labels for testing.
1414
LABEL operators.operatorframework.io.test.mediatype.v1=scorecard+v1

bundle/manifests/tang-operator.clusterserviceversion.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,10 @@ metadata:
2525
}
2626
]
2727
capabilities: Basic Install
28-
createdAt: "2024-03-28T10:31:23Z"
28+
createdAt: "2024-05-07T08:38:26Z"
2929
operators.operatorframework.io/builder: operator-sdk-v1.33.0
30-
operators.operatorframework.io/project_layout: go.kubebuilder.io/v3
31-
name: tang-operator.v1.0.8
30+
operators.operatorframework.io/project_layout: go.kubebuilder.io/v4
31+
name: tang-operator.v1.0.9
3232
namespace: placeholder
3333
spec:
3434
apiservicedefinitions: {}
@@ -328,7 +328,7 @@ spec:
328328
- --leader-elect
329329
command:
330330
- /manager
331-
image: quay.io/sec-eng-special/tang-operator:v1.0.8
331+
image: quay.io/sec-eng-special/tang-operator:v1.0.9
332332
livenessProbe:
333333
httpGet:
334334
path: /healthz
@@ -411,4 +411,4 @@ spec:
411411
maturity: alpha
412412
provider:
413413
name: Red Hat
414-
version: 1.0.8
414+
version: 1.0.9

bundle/metadata/annotations.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ annotations:
77
operators.operatorframework.io.bundle.channels.v1: stable
88
operators.operatorframework.io.metrics.builder: operator-sdk-v1.33.0
99
operators.operatorframework.io.metrics.mediatype.v1: metrics+v1
10-
operators.operatorframework.io.metrics.project_layout: go.kubebuilder.io/v3
10+
operators.operatorframework.io.metrics.project_layout: go.kubebuilder.io/v4
1111

1212
# Annotations for testing.
1313
operators.operatorframework.io.test.mediatype.v1: scorecard+v1

config/manager/kustomization.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ kind: Kustomization
1313
images:
1414
- name: controller
1515
newName: quay.io/sec-eng-special/tang-operator
16-
newTag: v1.0.8
16+
newTag: v1.0.9

0 commit comments

Comments
 (0)