Skip to content

Commit

Permalink
actions: Removing the explicit controller name
Browse files Browse the repository at this point in the history
The demo environment was updated from juju 3.0 to 3.1. For this, a new
controller had to be bootstrapped, and the waltz-public-v3 model was
migrated to it.

Since we only have one controller, we don't need to explicitly specify it.
This will make it easier in the future, when upgrading the controller once again.
  • Loading branch information
claudiubelu committed Feb 29, 2024
1 parent 6495b33 commit cf7f133
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/refresh_deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ jobs:
script: |
set -x
# Controller name is "waltz-public-v3", model name is "waltz-model-v3"
juju switch waltz-public-v3:waltz-model-v3
# The model name is "waltz-model-v3"
juju switch waltz-model-v3
# Running juju status will show us the current revisions of the charms.
juju status --relations
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/renew_certificate.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ jobs:
username: ${{ secrets.SSH_USER }}
key: ${{ secrets.SSH_KEY }}
script: |
# Controller name is "waltz-public-v3", model name is "waltz-model-v3"
juju switch waltz-public-v3:waltz-model-v3
# The model name is "waltz-model-v3"
juju switch waltz-model-v3
# Running juju status will show us the current revisions of the charms.
juju status --relations
Expand Down

0 comments on commit cf7f133

Please sign in to comment.