diff --git a/.github/workflows/main.yaml b/.github/workflows/main.yaml index ffca11e..348342e 100644 --- a/.github/workflows/main.yaml +++ b/.github/workflows/main.yaml @@ -53,7 +53,7 @@ jobs: if: ${{ github.ref_name == 'main' }} uses: canonical/sdcore-github-workflows/.github/workflows/publish-charm.yaml@v2.2.0 with: - track-name: 1.5 + track-name: 1.6 secrets: CHARMCRAFT_AUTH: ${{ secrets.CHARMCRAFT_AUTH }} @@ -68,6 +68,6 @@ jobs: uses: canonical/sdcore-github-workflows/.github/workflows/publish-charm.yaml@v2.2.0 with: branch-name: ${{ github.ref_name }} - track-name: 1.5 + track-name: 1.6 secrets: CHARMCRAFT_AUTH: ${{ secrets.CHARMCRAFT_AUTH }} diff --git a/.github/workflows/promote.yaml b/.github/workflows/promote.yaml index 570c70b..81232ff 100644 --- a/.github/workflows/promote.yaml +++ b/.github/workflows/promote.yaml @@ -15,6 +15,7 @@ on: description: Name of the charmhub track to publish options: - '1.5' + - '1.6' - latest diff --git a/README.md b/README.md index 5a8aeb4..1c52489 100644 --- a/README.md +++ b/README.md @@ -7,9 +7,9 @@ A Charmed Operator for Aether SD-Core's Policy Control Function (PCF) component ```bash juju deploy mongodb-k8s --channel=6/stable --trust -juju deploy sdcore-nrf-k8s --channel=1.5/edge -juju deploy sdcore-pcf-k8s --channel=1.5/edge -juju deploy sdcore-nms-k8s --channel=1.5/edge +juju deploy sdcore-nrf-k8s --channel=1.6/edge +juju deploy sdcore-pcf-k8s --channel=1.6/edge +juju deploy sdcore-nms-k8s --channel=1.6/edge juju deploy self-signed-certificates --channel=stable juju integrate sdcore-nms-k8s:common_database mongodb-k8s:database diff --git a/terraform/variables.tf b/terraform/variables.tf index deb4ee1..be85729 100644 --- a/terraform/variables.tf +++ b/terraform/variables.tf @@ -10,7 +10,7 @@ variable "app_name" { variable "channel" { description = "The channel to use when deploying a charm." type = string - default = "1.5/edge" + default = "1.6/edge" } variable "config" { diff --git a/tests/integration/test_integration.py b/tests/integration/test_integration.py index 19c2c75..52d6ed9 100644 --- a/tests/integration/test_integration.py +++ b/tests/integration/test_integration.py @@ -15,9 +15,9 @@ METADATA = yaml.safe_load(Path("./charmcraft.yaml").read_text()) APPLICATION_NAME = METADATA["name"] NRF_CHARM_NAME = "sdcore-nrf-k8s" -NRF_CHARM_CHANNEL = "1.5/edge" +NRF_CHARM_CHANNEL = "1.6/edge" NMS_CHARM_NAME = "sdcore-nms-k8s" -NMS_CHARM_CHANNEL = "1.5/edge" +NMS_CHARM_CHANNEL = "1.6/edge" DATABASE_CHARM_NAME = "mongodb-k8s" DATABASE_CHARM_CHANNEL = "6/stable" TLS_CHARM_NAME = "self-signed-certificates"