Skip to content

Commit

Permalink
Bumps project version to 1.6
Browse files Browse the repository at this point in the history
  • Loading branch information
Gmerold committed Nov 26, 2024
1 parent c7f593b commit a26eddb
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}

Expand All @@ -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 }}
1 change: 1 addition & 0 deletions .github/workflows/promote.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ on:
description: Name of the charmhub track to publish
options:
- '1.5'
- '1.6'
- latest


Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion terraform/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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" {
Expand Down
4 changes: 2 additions & 2 deletions tests/integration/test_integration.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit a26eddb

Please sign in to comment.