Merge branch 'master' of github.com:att-comdev/aic-helm

This commit is contained in:
Alan Meadows 2016-12-14 13:35:17 -08:00
commit ac9985cfde
4 changed files with 4 additions and 24 deletions

View File

@ -4,4 +4,4 @@ This is a fully self-contained helm-based OpenStack deployment on Kubernetes, in
This collection is a work in progress so components will continue to be added over time.
Please see the [wiki](https://github.com/att-comdev/aic-helm/wiki) for more details.
Please see the [wiki](https://github.com/att-comdev/aic-helm/wiki) for more details.

View File

@ -7,5 +7,3 @@ data:
{{ tuple "bin/_db-sync.sh.tpl" . | include "template" | indent 4 }}
init.sh: |
{{ tuple "bin/_init.sh.tpl" . | include "template" | indent 4 }}
start.sh: |
{{ tuple "bin/_start.sh.tpl" . | include "template" | indent 4 }}

View File

@ -1,12 +0,0 @@
#!/bin/bash
set -ex
# link our keystone wsgi to apaches running config
ln -s /configmaps/wsgi-keystone.conf /etc/apache2/sites-enabled/wsgi-keystone.conf
# Loading Apache2 ENV variables
source /etc/apache2/envvars
rm -rf /var/run/apache2/*
APACHE_DIR="apache2"
apache2 -DFOREGROUND

View File

@ -44,8 +44,8 @@ spec:
- name: keystone-api
image: {{ .Values.images.api }}
command:
- bash
- /tmp/start.sh
- apache2
- -DFOREGROUND
ports:
- containerPort: {{ .Values.network.port.public }}
- containerPort: {{ .Values.network.port.admin }}
@ -57,14 +57,11 @@ spec:
mountPath: /etc/keystone/keystone.conf
subPath: keystone.conf
- name: wsgikeystone
mountPath: /configmaps/wsgi-keystone.conf
mountPath: /etc/apache2/conf-enabled/wsgi-keystone.conf
subPath: wsgi_keystone.conf
- name: mpmeventconf
mountPath: /etc/apache2/mods-available/mpm_event.conf
subPath: mpm_event.conf
- name: startsh
mountPath: /tmp/start.sh
subPath: start.sh
volumes:
- name: keystoneconf
configMap:
@ -84,6 +81,3 @@ spec:
items:
- key: mpm-event.conf
path: mpm_event.conf
- name: startsh
configMap:
name: keystone-bin