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

Prepare for v4.5.3 #1578

Merged
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 docs/runtime-env.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`.
10 changes: 5 additions & 5 deletions docs/test-container.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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 .
```

Expand All @@ -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"
```

Expand Down
2 changes: 1 addition & 1 deletion pkg/provider/provider.go
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion pkg/provider/provider_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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",
},
}

Expand Down
2 changes: 1 addition & 1 deletion version.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"partner_tag": "v4.5.2",
"partner_tag": "v4.5.3",
"claimFormat": "v0.1.0",
"parserTag": "v0.1.2"
}
Loading