Skip to content

Commit

Permalink
chore: bump to v1.4.0 (#43)
Browse files Browse the repository at this point in the history
  • Loading branch information
gruyaume authored Apr 5, 2024
1 parent d809b64 commit bfbb6ac
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,5 +34,5 @@ jobs:
uses: canonical/sdcore-github-workflows/.github/workflows/publish-charm.yaml@main
with:
charm-file-name: "sdcore-upf_ubuntu-22.04-amd64.charm"
track-name: 1.3
track-name: 1.4
secrets: inherit
2 changes: 1 addition & 1 deletion .github/workflows/promote.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ on:
type: choice
description: Name of the charmhub track to publish
options:
- 1.3
- 1.4
- latest


Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ juju add-machine ssh:ubuntu@<UPF machine IP address> --private-key id_rsa

```shell
juju deploy sdcore-upf \
--channel=1.3/edge \
--channel=1.4/edge \
--config access-interface-name=enp6s0 \
--config core-interface-name=enp7s0 \
--to <machine number>
Expand Down
2 changes: 1 addition & 1 deletion src/charm.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@

UPF_SNAP_NAME = "sdcore-upf"
UPF_SNAP_CHANNEL = "latest/edge"
UPF_SNAP_REVISION = "28"
UPF_SNAP_REVISION = "36"
UPF_CONFIG_FILE_NAME = "upf.json"
UPF_CONFIG_PATH = "/var/snap/sdcore-upf/common"
PFCP_PORT = 8805
Expand Down
2 changes: 1 addition & 1 deletion tests/unit/test_charm.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ def test_given_upf_snap_uninstalled_when_configure_then_upf_snap_installed(
upf_snap.ensure.assert_called_with(
SnapState.Latest,
channel="latest/edge",
revision="28",
revision="36",
devmode=True,
)
upf_snap.hold.assert_called()
Expand Down

0 comments on commit bfbb6ac

Please sign in to comment.