sunbeam-charms/charms/keystone-k8s/metadata.yaml
Hemanth Nakkina 8787171492 Enable notifications
Currently the notifications are not sent by the service.
Add configuration parameter enable-telemetry-notifications
to toggle notifications. Set notification driver to messagingv2
when the parameter is set to True.
Update metadata.yaml to include amqp as an optional interface.

Change-Id: Ia77fa388e238ca13a7194a3d38de33a42f57538b
2023-08-30 01:39:18 +00:00

88 lines
2.2 KiB
YAML

# Copyright 2021 Canonical Ltd.
# See LICENSE file for licensing details.
name: keystone-k8s
summary: OpenStack identity service
maintainer: Openstack Charmers <openstack-charmers@lists.ubuntu.com>
description: |
Keystone is an OpenStack project that provides Identity, Token, Catalog and
Policy services for use specifically by projects in the OpenStack family. It
implements OpenStack's Identity API.
version: 3
bases:
- name: ubuntu
channel: 22.04/stable
assumes:
- k8s-api
- juju >= 3.1
tags:
- openstack
- identity
- misc
source: https://opendev.org/openstack/charm-keystone-k8s
issues: https://bugs.launchpad.net/charm-keystone-k8s
provides:
identity-service:
interface: keystone
identity-credentials:
interface: keystone-credentials
identity-ops:
interface: keystone-resources
requires:
database:
interface: mysql_client
limit: 1
ingress-internal:
interface: ingress
limit: 1
optional: true
ingress-public:
interface: ingress
limit: 1
amqp:
interface: rabbitmq
optional: true
peers:
peers:
interface: keystone-peer
storage:
fernet-keys:
type: filesystem
description: |
Persistent storage for the location of fernet keys
minimum-size: 5M
credential-keys:
type: filesystem
description: |
Persistent storage for the location of credential keys
minimum-size: 5M
containers:
# The primary container that runs the keystone services
keystone:
resource: keystone-image
mounts:
- storage: fernet-keys
# The fernet keys used for generated tokens are stored here. With a
# mounted storage option, the fernet keys are persisted across
# container restarts.
location: /etc/keystone/fernet-keys/
- storage: credential-keys
# The credential keys used for generated credentials are stored here.
# With a mounted storage option, the credential keys are persisted
# across container restarts.
location: /etc/keystone/credential-keys/
resources:
keystone-image:
type: oci-image
description: OCI image for OpenStack Keystone
# ghcr.io/openstack-snaps/keystone:2023.1
upstream-source: ghcr.io/openstack-snaps/keystone:2023.1