Merge "Support latest MAAS in Airsloop"
This commit is contained in:
commit
494d054fc6
@ -353,7 +353,7 @@ data:
|
|||||||
type: git
|
type: git
|
||||||
maas:
|
maas:
|
||||||
location: https://opendev.org/airship/maas
|
location: https://opendev.org/airship/maas
|
||||||
reference: 2910412699231f8818a6c1b56e86c985da7f3717
|
reference: 407d4ccfb41637d46483b319c0b401459523e272
|
||||||
subpath: charts/maas
|
subpath: charts/maas
|
||||||
type: git
|
type: git
|
||||||
maas-htk:
|
maas-htk:
|
||||||
|
@ -13,8 +13,36 @@ metadata:
|
|||||||
- method: merge
|
- method: merge
|
||||||
path: .
|
path: .
|
||||||
storagePolicy: cleartext
|
storagePolicy: cleartext
|
||||||
|
substitutions:
|
||||||
|
|
||||||
|
# MaaS IPs
|
||||||
|
- src:
|
||||||
|
schema: pegleg/CommonAddresses/v1
|
||||||
|
name: common-addresses
|
||||||
|
path: .genesis.ip
|
||||||
|
dest:
|
||||||
|
path: .values.conf.drydock.maasdriver.maas_api_url
|
||||||
|
pattern: 'MAAS_IP'
|
||||||
|
- src:
|
||||||
|
schema: pegleg/CommonAddresses/v1
|
||||||
|
name: common-addresses
|
||||||
|
path: .node_ports.maas_api
|
||||||
|
dest:
|
||||||
|
path: .values.conf.drydock.maasdriver.maas_api_url
|
||||||
|
pattern: 'MAAS_PORT'
|
||||||
|
|
||||||
data:
|
data:
|
||||||
values:
|
values:
|
||||||
|
network:
|
||||||
|
api:
|
||||||
|
nodeport:
|
||||||
|
enabled: true
|
||||||
replicas:
|
replicas:
|
||||||
drydock: 1
|
drydock: 1
|
||||||
|
conf:
|
||||||
|
drydock:
|
||||||
|
database:
|
||||||
|
pool_size: 200
|
||||||
|
maasdriver:
|
||||||
|
maas_api_url: http://MAAS_IP:MAAS_PORT/MAAS
|
||||||
...
|
...
|
||||||
|
@ -13,12 +13,80 @@ metadata:
|
|||||||
- method: merge
|
- method: merge
|
||||||
path: .
|
path: .
|
||||||
storagePolicy: cleartext
|
storagePolicy: cleartext
|
||||||
|
substitutions:
|
||||||
|
|
||||||
|
# Drydock IPs
|
||||||
|
- src:
|
||||||
|
schema: pegleg/CommonAddresses/v1
|
||||||
|
name: common-addresses
|
||||||
|
path: .bootstrap.ip
|
||||||
|
dest:
|
||||||
|
path: .values.conf.drydock.bootaction_url
|
||||||
|
pattern: '(DRYDOCK_IP)'
|
||||||
|
- src:
|
||||||
|
schema: pegleg/CommonAddresses/v1
|
||||||
|
name: common-addresses
|
||||||
|
path: .node_ports.drydock_api
|
||||||
|
dest:
|
||||||
|
path: .values.conf.drydock.bootaction_url
|
||||||
|
pattern: '(DRYDOCK_PORT)'
|
||||||
|
|
||||||
|
# MaaS IPs
|
||||||
|
- src:
|
||||||
|
schema: pegleg/CommonAddresses/v1
|
||||||
|
name: common-addresses
|
||||||
|
path: .bootstrap.ip
|
||||||
|
dest:
|
||||||
|
path: .values.conf.maas.url.maas_url
|
||||||
|
pattern: '(MAAS_IP)'
|
||||||
|
- src:
|
||||||
|
schema: pegleg/CommonAddresses/v1
|
||||||
|
name: common-addresses
|
||||||
|
path: .node_ports.maas_api
|
||||||
|
dest:
|
||||||
|
path: .values.conf.maas.url.maas_url
|
||||||
|
pattern: '(MAAS_PORT)'
|
||||||
|
- src:
|
||||||
|
schema: pegleg/CommonAddresses/v1
|
||||||
|
name: common-addresses
|
||||||
|
path: .node_ports.maas_api
|
||||||
|
dest:
|
||||||
|
path: .values.endpoints.maas_region.port.region_api.nodeport
|
||||||
|
- src:
|
||||||
|
schema: pegleg/CommonAddresses/v1
|
||||||
|
name: common-addresses
|
||||||
|
path: .node_ports.maas_proxy
|
||||||
|
dest:
|
||||||
|
path: .values.endpoints.maas_region.port.region_proxy.default
|
||||||
data:
|
data:
|
||||||
values:
|
values:
|
||||||
|
manifests:
|
||||||
|
maas_ingress: false
|
||||||
|
|
||||||
|
network:
|
||||||
|
region_proxy:
|
||||||
|
node_port:
|
||||||
|
enabled: true
|
||||||
|
region_api:
|
||||||
|
ingress:
|
||||||
|
public: false
|
||||||
|
node_port:
|
||||||
|
enabled: true
|
||||||
|
|
||||||
conf:
|
conf:
|
||||||
maas:
|
maas:
|
||||||
images:
|
images:
|
||||||
default_os: 'ubuntu'
|
default_os: 'ubuntu'
|
||||||
default_image: 'xenial'
|
default_image: 'xenial'
|
||||||
default_kernel: 'ga-16.04'
|
default_kernel: 'ga-16.04'
|
||||||
|
cache:
|
||||||
|
enabled: true
|
||||||
|
drydock:
|
||||||
|
bootaction_url: http://DRYDOCK_IP:DRYDOCK_PORT/api/v1.0
|
||||||
|
maas:
|
||||||
|
credentials:
|
||||||
|
secret:
|
||||||
|
namespace: ucp
|
||||||
|
url:
|
||||||
|
maas_url: http://MAAS_IP:MAAS_PORT/MAAS
|
||||||
...
|
...
|
||||||
|
@ -157,7 +157,7 @@ data:
|
|||||||
name: maas-region
|
name: maas-region
|
||||||
hosts:
|
hosts:
|
||||||
default: maas-region
|
default: maas-region
|
||||||
public: maas
|
public: maas-region
|
||||||
path:
|
path:
|
||||||
default: /MAAS
|
default: /MAAS
|
||||||
scheme:
|
scheme:
|
||||||
|
Loading…
Reference in New Issue
Block a user