-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request juju#12344 from hmlanigan/update-charm-go-mod
juju#12344 Pull in charm v8 [juju#324](juju/charm#324). To ensure that charm hub schema is included in charm URLs stored in the juju db. ## QA steps ```console # Setup $ export JUJU_DEV_FEATURE_FLAGS="charm-hub" $ juju bootstrap localhost test-pr $ juju add-model test --config charm-hub-url="https://api.staging.snapcraft.io" # Deploy one of each charms $ juju deploy ubuntu Located charm "ubuntu" in charm-hub, revision 17 Deploying "ubuntu" from charm-hub charm "ubuntu", revision 17 in channel latest/stable $ juju deploy cs:mysql Located charm "mysql" in charm-store, revision 58 Deploying "mysql" from charm-store charm "mysql", revision 58 in channel stable $ juju deploy ./testcharms/charm-repo/bionic/lxd-profile Located local charm "lxd-profile", revision 0 Deploying "lxd-profile" from local charm "lxd-profile", revision 0 # Verify charmurl has the schema for all 3 charms $ juju-db.bash juju:PRIMARY> db.applications.find({},{"name":1,"charmurl":1}).pretty() { "_id" : "5cbf5878-ff8c-41e6-86c2-7b45e8e2e664:ubuntu", "name" : "ubuntu", "charmurl" : "ch:ubuntu-17" } { "_id" : "5cbf5878-ff8c-41e6-86c2-7b45e8e2e664:mysql", "name" : "mysql", "charmurl" : "cs:mysql-58" } { "_id" : "5cbf5878-ff8c-41e6-86c2-7b45e8e2e664:lxd-profile", "name" : "lxd-profile", "charmurl" : "local:bionic/lxd-profile-0" } ```
- Loading branch information
Showing
5 changed files
with
10 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters