
Currently the heat charm instance runs heat-api and heat-engine services or heat-api-cfn or heat-engine services. Change heat charm to deploy heat-api, heat-api-cfn, heat-engine containers. Change the ingress relation to use traefik-route interface instead of ingress interface so that the traefik configuration for heat-api and heat-api-cfn serive can be written by charm. Add heat-api-cfn pebble container handler and update service endpoints accordingly. Remove heat-config interface and corresponding handlers. Change-Id: I391f8d4ffefcebdb2423fcc1947590ca906d711a
74 lines
1.5 KiB
YAML
74 lines
1.5 KiB
YAML
bundle: kubernetes
|
|
applications:
|
|
|
|
mysql:
|
|
charm: ch:mysql-k8s
|
|
channel: 8.0/stable
|
|
scale: 1
|
|
trust: false
|
|
|
|
# Currently traefik is required for networking things.
|
|
# If this isn't present, the units will hang at "installing agent".
|
|
traefik:
|
|
charm: ch:traefik-k8s
|
|
channel: 1.0/candidate
|
|
scale: 1
|
|
trust: true
|
|
|
|
traefik-public:
|
|
charm: ch:traefik-k8s
|
|
channel: 1.0/candidate
|
|
scale: 1
|
|
trust: true
|
|
options:
|
|
kubernetes-service-annotations: metallb.universe.tf/address-pool=public
|
|
|
|
rabbitmq:
|
|
charm: ch:rabbitmq-k8s
|
|
channel: 3.12/edge
|
|
scale: 1
|
|
trust: true
|
|
options:
|
|
minimum-replicas: 1
|
|
|
|
keystone:
|
|
charm: ch:keystone-k8s
|
|
channel: 2023.2/edge
|
|
scale: 1
|
|
trust: true
|
|
options:
|
|
admin-role: admin
|
|
storage:
|
|
fernet-keys: 5M
|
|
credential-keys: 5M
|
|
|
|
heat:
|
|
charm: ../../heat-k8s.charm
|
|
scale: 1
|
|
trust: true
|
|
resources:
|
|
heat-api-image: ghcr.io/canonical/heat-consolidated:2023.2
|
|
heat-engine-image: ghcr.io/canonical/heat-consolidated:2023.2
|
|
|
|
relations:
|
|
- - traefik:ingress
|
|
- keystone:ingress-internal
|
|
- - traefik-public:ingress
|
|
- keystone:ingress-public
|
|
|
|
- - mysql:database
|
|
- keystone:database
|
|
|
|
- - mysql:database
|
|
- heat:database
|
|
- - keystone:identity-service
|
|
- heat:identity-service
|
|
- - keystone:identity-ops
|
|
- heat:identity-ops
|
|
- - traefik:traefik-route
|
|
- heat:traefik-route-internal
|
|
- - traefik-public:traefik-route
|
|
- heat:traefik-route-public
|
|
- - rabbitmq:amqp
|
|
- heat:amqp
|