Skip to content
Snippets Groups Projects
Commit 83dff825 authored by calvinosanc1's avatar calvinosanc1
Browse files

Fix 1391: New version of yq snap makes charmed installer to fail

Fix 1394: Use of R9 images

Change-Id: I0e246889e914c93963984b26423ab5620cb65efe
Signed-off-by: default avatarcalvinosanc1 <guillermo.calvino@canonical.com>
parent 7498c1df
No related branches found
No related tags found
No related merge requests found
......@@ -65,7 +65,7 @@ options:
image:
type: string
description: OCI image
default: opensourcemano/lcm:8
default: opensourcemano/lcm:9
image_username:
description: Docker repository username
type: string
......
......@@ -37,7 +37,7 @@ resources:
image:
type: oci-image
description: OSM docker image for LCM
upstream-source: "opensourcemano/lcm:8"
upstream-source: "opensourcemano/lcm:9"
requires:
kafka:
interface: kafka
......
......@@ -67,7 +67,7 @@ options:
image:
type: string
description: OCI image
default: opensourcemano/mon:8
default: opensourcemano/mon:9
image_username:
description: Docker repository username
type: string
......
......@@ -37,7 +37,7 @@ resources:
image:
type: oci-image
description: OSM docker image for MON
upstream-source: "opensourcemano/mon:8"
upstream-source: "opensourcemano/mon:9"
requires:
kafka:
interface: kafka
......
......@@ -31,7 +31,7 @@ options:
image:
type: string
description: OCI image
default: opensourcemano/nbi:8
default: opensourcemano/nbi:9
image_username:
description: Docker repository username
type: string
......
......@@ -37,7 +37,7 @@ resources:
image:
type: oci-image
description: OSM docker image for NBI
upstream-source: "opensourcemano/nbi:8"
upstream-source: "opensourcemano/nbi:9"
requires:
kafka:
interface: kafka
......
......@@ -29,4 +29,4 @@ resources:
image:
type: oci-image
description: OSM docker image for NBI
upstream-source: "opensourcemano/ng-ui:8"
upstream-source: "opensourcemano/ng-ui:9"
......@@ -23,7 +23,7 @@ options:
image:
type: string
description: OCI image
default: opensourcemano/pol:8
default: opensourcemano/pol:9
image_username:
description: Docker repository username
type: string
......
......@@ -37,7 +37,7 @@ resources:
image:
type: oci-image
description: OSM docker image for POL
upstream-source: "opensourcemano/pol:8"
upstream-source: "opensourcemano/pol:9"
requires:
kafka:
interface: kafka
......
......@@ -31,7 +31,7 @@ options:
image:
type: string
description: OCI image
default: opensourcemano/ro:8
default: opensourcemano/ro:9
image_username:
description: Docker repository username
type: string
......@@ -43,4 +43,4 @@ options:
database_commonkey:
description: Database common key
type: string
default: osm
\ No newline at end of file
default: osm
......@@ -27,7 +27,7 @@ options:
image:
type: string
description: OCI image
default: opensourcemano/light-ui:8
default: opensourcemano/light-ui:9
image_username:
description: Docker repository username
type: string
......
......@@ -310,14 +310,14 @@ function create_overlay() {
sudo snap install jq
sudo snap install yq
local HOME=/home/$USER
local vca_user=$(cat $HOME/.local/share/juju/accounts.yaml | yq r - controllers.$CONTROLLER_NAME.user)
local vca_password=$(cat $HOME/.local/share/juju/accounts.yaml | yq r - controllers.$CONTROLLER_NAME.password)
local vca_host=$(cat $HOME/.local/share/juju/controllers.yaml | yq r - controllers.$CONTROLLER_NAME.api-endpoints[0] | cut -d ":" -f 1)
local vca_port=$(cat $HOME/.local/share/juju/controllers.yaml | yq r - controllers.$CONTROLLER_NAME.api-endpoints[0] | cut -d ":" -f 2)
local vca_user=$(cat $HOME/.local/share/juju/accounts.yaml | yq e .controllers.$CONTROLLER_NAME.user - )
local vca_password=$(cat $HOME/.local/share/juju/accounts.yaml | yq e .controllers.$CONTROLLER_NAME.password - )
local vca_host=$(cat $HOME/.local/share/juju/controllers.yaml | yq e .controllers.$CONTROLLER_NAME.api-endpoints[0] - | cut -d ":" -f 1)
local vca_port=$(cat $HOME/.local/share/juju/controllers.yaml | yq e .controllers.$CONTROLLER_NAME.api-endpoints[0] - | cut -d ":" -f 2)
local vca_pubkey=\"$(cat $HOME/.local/share/juju/ssh/juju_id_rsa.pub)\"
local vca_cloud="lxd-cloud"
# Get the VCA Certificate
local vca_cacert=$(cat $HOME/.local/share/juju/controllers.yaml | yq r - controllers.$CONTROLLER_NAME.ca-cert | base64 | tr -d \\n)
local vca_cacert=$(cat $HOME/.local/share/juju/controllers.yaml | yq e .controllers.$CONTROLLER_NAME.ca-cert - | base64 | tr -d \\n)
# Calculate the default route of this machine
local DEFAULT_IF=`ip route list match 0.0.0.0 | awk '{print $5}'`
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment