Skip to content
This repository was archived by the owner on Jul 24, 2019. It is now read-only.
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 33 additions & 0 deletions cinder/templates/bin/_bootstrap.sh.tpl
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
#!/bin/bash

# Copyright 2017 The Openstack-Helm Authors.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

set -ex
export HOME=/tmp

{{ if .Values.bootstrap.enabled }}

{{ range .Values.bootstrap.volumes }}
openstack volume type show {{ .group }} || \
openstack volume type create \
--public \
--property volume_driver={{ .driver }} \
--property volume_backend_name={{ .name }} \
{{ .group }}
{{ end }}

{{ end }}

exit 0
2 changes: 2 additions & 0 deletions cinder/templates/configmap-bin.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,3 +25,5 @@ data:
{{- include "helm-toolkit.keystone_endpoints" . | indent 4 }}
ks-user.sh: |+
{{- include "helm-toolkit.keystone_user" . | indent 4 }}
bootstrap.sh: |+
{{ tuple "bin/_bootstrap.sh.tpl" . | include "helm-toolkit.template" | indent 4 }}
66 changes: 66 additions & 0 deletions cinder/templates/job-bootstrap.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,66 @@
# Copyright 2017 The Openstack-Helm Authors.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

{{- $envAll := . }}
{{- $ksAdminSecret := $envAll.Values.keystone.admin_secret | default "cinder-env-keystone-admin" }}
{{- $dependencies := .Values.dependencies.bootstrap }}
apiVersion: batch/v1
kind: Job
metadata:
name: cinder-bootstrap
spec:
template:
metadata:
annotations:
pod.beta.kubernetes.io/init-containers: '[
{{ tuple $envAll $dependencies "[]" | include "helm-toolkit.kubernetes_entrypoint_init_container" | indent 10 }}
]'
spec:
restartPolicy: OnFailure
nodeSelector:
{{ .Values.labels.node_selector_key }}: {{ .Values.labels.node_selector_value }}
containers:
- name: cinder-bootstrap
image: {{ .Values.images.bootstrap }}
imagePullPolicy: {{ .Values.images.pull_policy }}
{{- if .Values.resources.enabled }}
resources:
requests:
memory: {{ .Values.resources.bootstrap.requests.memory | quote }}
cpu: {{ .Values.resources.bootstrap.requests.cpu | quote }}
limits:
memory: {{ .Values.resources.bootstrap.limits.memory | quote }}
cpu: {{ .Values.resources.bootstrap.limits.cpu | quote }}
{{- end }}
command:
- bash
- /tmp/bootstrap.sh
env:
{{- with $env := dict "ksUserSecret" $ksAdminSecret }}
{{- include "helm-toolkit.keystone_openrc_env_vars" $env | indent 12 }}
{{- end }}
volumeMounts:
- name: cinderconf
mountPath: /etc/cinder/cinder.conf
subPath: cinder.conf
- name: cinder-bin
mountPath: /tmp/bootstrap.sh
subPath: bootstrap.sh
volumes:
- name: cinderconf
configMap:
name: cinder-etc
- name: cinder-bin
configMap:
name: cinder-bin
20 changes: 20 additions & 0 deletions cinder/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ images:
db_init: quay.io/stackanetes/stackanetes-kolla-toolbox:newton
db_sync: quay.io/stackanetes/stackanetes-cinder-api:newton
api: quay.io/stackanetes/stackanetes-cinder-api:newton
bootstrap: quay.io/stackanetes/stackanetes-cinder-api:newton
scheduler: quay.io/stackanetes/stackanetes-cinder-scheduler:newton
volume: quay.io/stackanetes/stackanetes-cinder-volume:newton
pull_policy: "IfNotPresent"
Expand All @@ -45,6 +46,14 @@ upgrades:
max_unavailable: 1
max_surge: 3

bootstrap:
enabled: true
volumes:
ceph:
name: "ceph"
group: "cinder-ceph"
driver: "cinder.volume.driver.RBDDriver"

keystone:
admin_user: "admin"
admin_user_domain: "default"
Expand Down Expand Up @@ -128,6 +137,10 @@ dependencies:
- cinder-ks-service
service:
- keystone-api
bootstrap:
service:
- keystone-api
- cinder-api
api:
jobs:
- cinder-db-sync
Expand Down Expand Up @@ -258,3 +271,10 @@ resources:
limits:
memory: "1024Mi"
cpu: "2000m"
bootstrap:
requests:
memory: "124Mi"
cpu: "100m"
limits:
memory: "1024Mi"
cpu: "2000m"