gate: remove fsid from charts that don't use it

Change-Id: I158c072e7a97a1005ff795dae4638e0cd539c197
This commit is contained in:
Chris Wedgwood 2018-05-03 00:34:35 +00:00
parent 371c2bec52
commit 324d95f03c
7 changed files with 0 additions and 30 deletions

View File

@ -26,10 +26,6 @@ limitations under the License.
{{- $monHost | set .Values.conf.ceph.global "mon_host" | quote | trunc 0 -}}
{{- end -}}
{{- if empty .Values.conf.ceph.global.fsid -}}
{{- uuidv4 | set .Values.conf.ceph.global "fsid" | quote | trunc 0 -}}
{{- end -}}
{{- if empty .Values.conf.ceph.osd.cluster_network -}}
{{- .Values.network.cluster | set .Values.conf.ceph.osd "cluster_network" | quote | trunc 0 -}}
{{- end -}}

View File

@ -228,11 +228,6 @@ data:
bootstrap:
enabled: true
conf:
ceph:
global:
#NOTE (portdirect): any uuidv4 value is acceptable here, though must
# be consistent if you wish to redploy whist maintaining data.
fsid: C1150D08-707D-4FEB-85E7-692BD9206DC3
rgw_ks:
enabled: true
pool:

View File

@ -110,11 +110,6 @@ data:
bootstrap:
enabled: false
conf:
ceph:
global:
#NOTE (portdirect): any uuidv4 value is acceptable here, though must
# be consistent if you wish to redploy whist maintaining data.
fsid: C1150D08-707D-4FEB-85E7-692BD9206DC3
rgw_ks:
enabled: true
source:

View File

@ -21,7 +21,6 @@ make pull-images ceph-client
#NOTE: Deploy command
: ${OSH_EXTRA_HELM_ARGS:=""}
CEPH_FS_ID="$(cat /tmp/ceph-fs-uuid.txt)"
tee /tmp/ceph-openstack-config.yaml <<EOF
endpoints:
identity:
@ -45,9 +44,6 @@ bootstrap:
conf:
rgw_ks:
enabled: true
ceph:
global:
fsid: ${CEPH_FS_ID}
EOF
helm upgrade --install ceph-openstack-config ./ceph-client \
--namespace=openstack \

View File

@ -21,7 +21,6 @@ make pull-images ceph
#NOTE: Deploy command
: ${OSH_EXTRA_HELM_ARGS:=""}
CEPH_FS_ID="$(cat /tmp/ceph-fs-uuid.txt)"
tee /tmp/radosgw-openstack.yaml <<EOF
endpoints:
identity:
@ -45,9 +44,6 @@ bootstrap:
conf:
rgw_ks:
enabled: true
ceph:
global:
fsid: ${CEPH_FS_ID}
EOF
helm upgrade --install radosgw-openstack ./ceph-client \
--namespace=openstack \

View File

@ -19,7 +19,6 @@ set -xe
#NOTE: Deploy command
CEPH_PUBLIC_NETWORK="$(./tools/deployment/multinode/kube-node-subnet.sh)"
CEPH_CLUSTER_NETWORK="$(./tools/deployment/multinode/kube-node-subnet.sh)"
CEPH_FS_ID="$(cat /tmp/ceph-fs-uuid.txt)"
tee /tmp/ceph-openstack-config.yaml <<EOF
endpoints:
identity:
@ -41,9 +40,6 @@ deployment:
bootstrap:
enabled: false
conf:
ceph:
global:
fsid: ${CEPH_FS_ID}
rgw_ks:
enabled: true
EOF

View File

@ -19,7 +19,6 @@ set -xe
#NOTE: Deploy command
CEPH_PUBLIC_NETWORK="$(./tools/deployment/multinode/kube-node-subnet.sh)"
CEPH_CLUSTER_NETWORK="$(./tools/deployment/multinode/kube-node-subnet.sh)"
CEPH_FS_ID="$(cat /tmp/ceph-fs-uuid.txt)"
tee /tmp/radosgw-openstack.yaml <<EOF
endpoints:
identity:
@ -41,9 +40,6 @@ deployment:
bootstrap:
enabled: false
conf:
ceph:
global:
fsid: ${CEPH_FS_ID}
rgw_ks:
enabled: true
EOF