You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
81 lines
2.2 KiB
81 lines
2.2 KiB
From 5302aa4e87694e96cc3dfc56ae494a1a8211cc37 Mon Sep 17 00:00:00 2001 |
|
From: Angie Wang <angie.wang@windriver.com> |
|
Date: Wed, 6 Mar 2019 18:06:06 -0500 |
|
Subject: [PATCH 01] Ceilometer chart: add the ability to publish events to |
|
panko |
|
|
|
Ceilometer notification agent sends the events to panko via panko |
|
dispatcher/publisher which requires the db connection information |
|
in /etc/panko/panko.conf. |
|
This commit updates to mount the configuration file for panko in |
|
ceilometer notification pod. |
|
|
|
Change-Id: I4ca524ed7462f945a245e9dbe1d69493dbc4211d |
|
Story: 2005019 |
|
Task: 29498 |
|
Depends-On: https://review.openstack.org/#/c/641144/ |
|
Signed-off-by: Angie Wang <angie.wang@windriver.com> |
|
(cherry picked from commit 507bc47f1447808c57c1c8aa82b0639543083656) |
|
Signed-off-by: Robert Church <robert.church@windriver.com> |
|
--- |
|
ceilometer/values.yaml | 29 +++++++++++++++++++++++++++++ |
|
1 file changed, 29 insertions(+) |
|
|
|
diff --git a/ceilometer/values.yaml b/ceilometer/values.yaml |
|
index 44dda74..1343670 100644 |
|
--- a/ceilometer/values.yaml |
|
+++ b/ceilometer/values.yaml |
|
@@ -1706,6 +1706,8 @@ dependencies: |
|
service: mongodb |
|
- endpoint: internal |
|
service: metric |
|
+ - endpoint: internal |
|
+ service: event |
|
tests: |
|
services: |
|
- endpoint: internal |
|
@@ -1827,6 +1829,21 @@ endpoints: |
|
api: |
|
default: 8041 |
|
public: 80 |
|
+ event: |
|
+ name: panko |
|
+ hosts: |
|
+ default: panko-api |
|
+ public: panko |
|
+ host_fqdn_override: |
|
+ default: null |
|
+ path: |
|
+ default: null |
|
+ scheme: |
|
+ default: 'http' |
|
+ port: |
|
+ api: |
|
+ default: 8977 |
|
+ public: 80 |
|
alarming: |
|
name: aodh |
|
hosts: |
|
@@ -1958,7 +1975,19 @@ pod: |
|
init_container: null |
|
ceilometer_notification: |
|
volumeMounts: |
|
+ - name: etcpanko |
|
+ mountPath: /etc/panko |
|
+ - name: panko-etc |
|
+ mountPath: /etc/panko/panko.conf |
|
+ subPath: panko.conf |
|
+ readOnly: true |
|
volumes: |
|
+ - name: etcpanko |
|
+ emptyDir: {} |
|
+ - name: panko-etc |
|
+ secret: |
|
+ secretName: panko-etc |
|
+ defaultMode: 0444 |
|
ceilometer_db_sync: |
|
ceilometer_db_sync: |
|
volumeMounts: |
|
-- |
|
2.7.4 |
|
|
|
|