Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit bc7fa66

Browse files
committedSep 26, 2024·
Build openstack-watcher container
Signed-off-by: Chandan Kumar (raukadah) <[email protected]>
1 parent 41545a5 commit bc7fa66

File tree

6 files changed

+32
-0
lines changed

6 files changed

+32
-0
lines changed
 

‎container-images/containers.yaml

+3
Original file line numberDiff line numberDiff line change
@@ -77,3 +77,6 @@ container_images:
7777
- imagename: quay.io/podified-master-centos9/openstack-tempest-extras:current-podified
7878
- imagename: quay.io/podified-master-centos9/openstack-tobiko:current-podified
7979
- imagename: quay.io/podified-master-centos9/openstack-openstackclient:current-podified
80+
- imagename: quay.io/podified-master-centos9/openstack-watcher-api:current-podified
81+
- imagename: quay.io/podified-master-centos9/openstack-watcher-applier:current-podified
82+
- imagename: quay.io/podified-master-centos9/openstack-watcher-decision-engine:current-podified

‎container-images/kolla/base/uid_gid_manage.sh

+1
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,7 @@ _SUPPORTED_USERS['tempest']='tempest 42480 42480 /var/lib/tempest kolla'
7171
_SUPPORTED_USERS['tobiko']='tobiko 42495 42495 /var/lib/tobiko kolla'
7272
_SUPPORTED_USERS['tss']='tss 59 59'
7373
_SUPPORTED_USERS['ansible']='ansible 227 227 /var/lib/ansible kolla'
74+
_SUPPORTED_USERS['watcher']='watcher 42451 42451 /var/lib/watcher kolla'
7475

7576
for _USER_TO_CREATE in $_USERS_TO_CREATE; do
7677
# Initialize computed args
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
tcib_actions:
2+
- run: dnf -y install {{ tcib_packages['common'] | join(' ') }} && dnf clean all && rm -rf /var/cache/dnf
3+
tcib_packages:
4+
common:
5+
- openstack-watcher-api
6+
tcib_user: watcher
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
tcib_actions:
2+
- run: dnf -y install {{ tcib_packages['common'] | join(' ') }} && dnf clean all && rm -rf /var/cache/dnf
3+
tcib_packages:
4+
common:
5+
- openstack-watcher-applier
6+
tcib_user: watcher
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
tcib_actions:
2+
- run: bash /usr/local/bin/uid_gid_manage watcher
3+
- run: dnf -y install {{ tcib_packages['common'] | join(' ') }} && dnf clean all && rm -rf /var/cache/dnf
4+
- run: sed -i -r 's,^(Listen 80),#\1,' /etc/httpd/conf/httpd.conf && sed -i -r 's,^(Listen 443),#\1,' /etc/httpd/conf.d/ssl.conf
5+
tcib_packages:
6+
common:
7+
- httpd
8+
- mod_ssl
9+
- openstack-watcher-common
10+
- python3-mod_wsgi
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
tcib_actions:
2+
- run: dnf -y install {{ tcib_packages['common'] | join(' ') }} && dnf clean all && rm -rf /var/cache/dnf
3+
tcib_packages:
4+
common:
5+
- openstack-watcher-decision-engine
6+
tcib_user: watcher

0 commit comments

Comments
 (0)
Please sign in to comment.