From 3bf3b3cff86d10ef5eef8058a13584580a271448 Mon Sep 17 00:00:00 2001 From: Brandon Palm Date: Thu, 2 Nov 2023 11:45:40 -0500 Subject: [PATCH] Prepare for v4.5.3 (#1578) --- docs/runtime-env.md | 2 +- docs/test-container.md | 10 +++++----- pkg/provider/provider.go | 2 +- pkg/provider/provider_test.go | 2 +- version.json | 2 +- 5 files changed, 9 insertions(+), 9 deletions(-) diff --git a/docs/runtime-env.md b/docs/runtime-env.md index c2ea45474..98f33109d 100644 --- a/docs/runtime-env.md +++ b/docs/runtime-env.md @@ -68,4 +68,4 @@ export TNF_PARTNER_REPO=registry.dfwt5g.lab:5000/testnetworkfunction ``` Note that you can also specify the debug pod image to use with `SUPPORT_IMAGE` -environment variable, default to `debug-partner:4.5.2`. +environment variable, default to `debug-partner:4.5.3`. diff --git a/docs/test-container.md b/docs/test-container.md index d20123998..e54c606e8 100644 --- a/docs/test-container.md +++ b/docs/test-container.md @@ -112,8 +112,8 @@ Two env vars allow to control the web artifacts and the the new tar.gz file gene ### Build locally ```shell -podman build -t cnf-certification-test:v4.5.2 \ - --build-arg TNF_VERSION=v4.5.2 \ +podman build -t cnf-certification-test:v4.5.3 \ + --build-arg TNF_VERSION=v4.5.3 \ ``` * `TNF_VERSION` value is set to a branch, a tag, or a hash of a commit that will be installed into the image @@ -125,8 +125,8 @@ The unofficial source could be a fork of the TNF repository. Use the `TNF_SRC_URL` build argument to override the URL to a source repository. ```shell -podman build -t cnf-certification-test:v4.5.2 \ - --build-arg TNF_VERSION=v4.5.2 \ +podman build -t cnf-certification-test:v4.5.3 \ + --build-arg TNF_VERSION=v4.5.3 \ --build-arg TNF_SRC_URL=https://github.com/test-network-function/cnf-certification-test . ``` @@ -135,7 +135,7 @@ podman build -t cnf-certification-test:v4.5.2 \ Specify the custom TNF image using the `-i` parameter. ```shell -./run-tnf-container.sh -i cnf-certification-test:v4.5.2 +./run-tnf-container.sh -i cnf-certification-test:v4.5.3 -t ~/tnf/config -o ~/tnf/output -l "networking,access-control" ``` diff --git a/pkg/provider/provider.go b/pkg/provider/provider.go index dccc33961..4801ba906 100644 --- a/pkg/provider/provider.go +++ b/pkg/provider/provider.go @@ -60,7 +60,7 @@ const ( cscosName = "CentOS Stream CoreOS" rhelName = "Red Hat Enterprise Linux" tnfPartnerRepoDef = "quay.io/testnetworkfunction" - supportImageDef = "debug-partner:4.5.2" + supportImageDef = "debug-partner:4.5.3" ) // Node's roles labels. Node is role R if it has **any** of the labels of each list. diff --git a/pkg/provider/provider_test.go b/pkg/provider/provider_test.go index 0ff0eb4a2..af45c911f 100644 --- a/pkg/provider/provider_test.go +++ b/pkg/provider/provider_test.go @@ -788,7 +788,7 @@ func TestBuildImageWithVersion(t *testing.T) { { repoVar: "", supportImageVar: "", - expectedOutput: "quay.io/testnetworkfunction/debug-partner:4.5.2", + expectedOutput: "quay.io/testnetworkfunction/debug-partner:4.5.3", }, } diff --git a/version.json b/version.json index 5d1a754bd..1f0a5efe2 100644 --- a/version.json +++ b/version.json @@ -1,5 +1,5 @@ { - "partner_tag": "v4.5.2", + "partner_tag": "v4.5.3", "claimFormat": "v0.1.0", "parserTag": "v0.1.2" }