From d6690e91c88947da1122da6b18dffa42fa873f85 Mon Sep 17 00:00:00 2001 From: Brandon Palm Date: Wed, 26 Jun 2024 13:41:16 -0500 Subject: [PATCH] Prepare for v5.1.3 (#2202) --- cmd/certsuite/run/run.go | 2 +- docs/runtime-env.md | 2 +- docs/test-run.md | 2 +- pkg/configuration/configuration.go | 2 +- version.json | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/cmd/certsuite/run/run.go b/cmd/certsuite/run/run.go index d4f1ba6f5..7f2e8bf88 100644 --- a/cmd/certsuite/run/run.go +++ b/cmd/certsuite/run/run.go @@ -38,7 +38,7 @@ func NewCommand() *cobra.Command { runCmd.PersistentFlags().Bool("enable-data-collection", false, "Allow sending test results to an external data collector") runCmd.PersistentFlags().Bool("create-xml-junit-file", false, "Create a JUnit file with the test results") runCmd.PersistentFlags().String("tnf-image-repository", "quay.io/testnetworkfunction", "The repository where TNF images are stored") - runCmd.PersistentFlags().String("tnf-debug-image", "debug-partner:5.1.2", "Name of the TNF debug image") + runCmd.PersistentFlags().String("tnf-debug-image", "debug-partner:5.1.3", "Name of the TNF debug image") return runCmd } diff --git a/docs/runtime-env.md b/docs/runtime-env.md index 03b58da5a..64a4c3e02 100644 --- a/docs/runtime-env.md +++ b/docs/runtime-env.md @@ -75,4 +75,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:5.1.2`. +environment variable, default to `debug-partner:5.1.3`. diff --git a/docs/test-run.md b/docs/test-run.md index 3c4c0b840..7b93e8928 100644 --- a/docs/test-run.md +++ b/docs/test-run.md @@ -84,7 +84,7 @@ The test image is available at this [repository](https://quay.io/repository/test docker pull quay.io/testnetworkfunction/cnf-certification-test: ``` -The image tag can be `latest` to select the latest release, `unstable` to fetch the image built with the latest commit in the repository or any existing version number such as `v5.1.0`. +The image tag can be `latest` to select the latest release, `unstable` to fetch the image built with the latest commit in the repository or any existing version number such as `v5.1.3`. ### Launch the Test Suite diff --git a/pkg/configuration/configuration.go b/pkg/configuration/configuration.go index 2c6174262..f98b1985f 100644 --- a/pkg/configuration/configuration.go +++ b/pkg/configuration/configuration.go @@ -110,5 +110,5 @@ type TestParameters struct { DaemonsetMemReq string `default:"100M" split_words:"true"` DaemonsetMemLim string `default:"100M" split_words:"true"` TnfPartnerRepo string `split_words:"true" default:"quay.io/testnetworkfunction"` - SupportImage string `split_words:"true" default:"debug-partner:5.1.2"` + SupportImage string `split_words:"true" default:"debug-partner:5.1.3"` } diff --git a/version.json b/version.json index 3402eb2aa..ac54d3589 100644 --- a/version.json +++ b/version.json @@ -1,5 +1,5 @@ { - "partner_tag": "v5.1.1", + "partner_tag": "v5.1.3", "claimFormat": "v0.4.0", "parserTag": "v0.4.5" }