gate: remove fsid from charts that don't use it
Change-Id: I158c072e7a97a1005ff795dae4638e0cd539c197
This commit is contained in:
parent
371c2bec52
commit
324d95f03c
@ -26,10 +26,6 @@ limitations under the License.
|
|||||||
{{- $monHost | set .Values.conf.ceph.global "mon_host" | quote | trunc 0 -}}
|
{{- $monHost | set .Values.conf.ceph.global "mon_host" | quote | trunc 0 -}}
|
||||||
{{- end -}}
|
{{- 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 -}}
|
{{- if empty .Values.conf.ceph.osd.cluster_network -}}
|
||||||
{{- .Values.network.cluster | set .Values.conf.ceph.osd "cluster_network" | quote | trunc 0 -}}
|
{{- .Values.network.cluster | set .Values.conf.ceph.osd "cluster_network" | quote | trunc 0 -}}
|
||||||
{{- end -}}
|
{{- end -}}
|
||||||
|
@ -228,11 +228,6 @@ data:
|
|||||||
bootstrap:
|
bootstrap:
|
||||||
enabled: true
|
enabled: true
|
||||||
conf:
|
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:
|
rgw_ks:
|
||||||
enabled: true
|
enabled: true
|
||||||
pool:
|
pool:
|
||||||
|
@ -110,11 +110,6 @@ data:
|
|||||||
bootstrap:
|
bootstrap:
|
||||||
enabled: false
|
enabled: false
|
||||||
conf:
|
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:
|
rgw_ks:
|
||||||
enabled: true
|
enabled: true
|
||||||
source:
|
source:
|
||||||
|
@ -21,7 +21,6 @@ make pull-images ceph-client
|
|||||||
|
|
||||||
#NOTE: Deploy command
|
#NOTE: Deploy command
|
||||||
: ${OSH_EXTRA_HELM_ARGS:=""}
|
: ${OSH_EXTRA_HELM_ARGS:=""}
|
||||||
CEPH_FS_ID="$(cat /tmp/ceph-fs-uuid.txt)"
|
|
||||||
tee /tmp/ceph-openstack-config.yaml <<EOF
|
tee /tmp/ceph-openstack-config.yaml <<EOF
|
||||||
endpoints:
|
endpoints:
|
||||||
identity:
|
identity:
|
||||||
@ -45,9 +44,6 @@ bootstrap:
|
|||||||
conf:
|
conf:
|
||||||
rgw_ks:
|
rgw_ks:
|
||||||
enabled: true
|
enabled: true
|
||||||
ceph:
|
|
||||||
global:
|
|
||||||
fsid: ${CEPH_FS_ID}
|
|
||||||
EOF
|
EOF
|
||||||
helm upgrade --install ceph-openstack-config ./ceph-client \
|
helm upgrade --install ceph-openstack-config ./ceph-client \
|
||||||
--namespace=openstack \
|
--namespace=openstack \
|
||||||
|
@ -21,7 +21,6 @@ make pull-images ceph
|
|||||||
|
|
||||||
#NOTE: Deploy command
|
#NOTE: Deploy command
|
||||||
: ${OSH_EXTRA_HELM_ARGS:=""}
|
: ${OSH_EXTRA_HELM_ARGS:=""}
|
||||||
CEPH_FS_ID="$(cat /tmp/ceph-fs-uuid.txt)"
|
|
||||||
tee /tmp/radosgw-openstack.yaml <<EOF
|
tee /tmp/radosgw-openstack.yaml <<EOF
|
||||||
endpoints:
|
endpoints:
|
||||||
identity:
|
identity:
|
||||||
@ -45,9 +44,6 @@ bootstrap:
|
|||||||
conf:
|
conf:
|
||||||
rgw_ks:
|
rgw_ks:
|
||||||
enabled: true
|
enabled: true
|
||||||
ceph:
|
|
||||||
global:
|
|
||||||
fsid: ${CEPH_FS_ID}
|
|
||||||
EOF
|
EOF
|
||||||
helm upgrade --install radosgw-openstack ./ceph-client \
|
helm upgrade --install radosgw-openstack ./ceph-client \
|
||||||
--namespace=openstack \
|
--namespace=openstack \
|
||||||
|
@ -19,7 +19,6 @@ set -xe
|
|||||||
#NOTE: Deploy command
|
#NOTE: Deploy command
|
||||||
CEPH_PUBLIC_NETWORK="$(./tools/deployment/multinode/kube-node-subnet.sh)"
|
CEPH_PUBLIC_NETWORK="$(./tools/deployment/multinode/kube-node-subnet.sh)"
|
||||||
CEPH_CLUSTER_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
|
tee /tmp/ceph-openstack-config.yaml <<EOF
|
||||||
endpoints:
|
endpoints:
|
||||||
identity:
|
identity:
|
||||||
@ -41,9 +40,6 @@ deployment:
|
|||||||
bootstrap:
|
bootstrap:
|
||||||
enabled: false
|
enabled: false
|
||||||
conf:
|
conf:
|
||||||
ceph:
|
|
||||||
global:
|
|
||||||
fsid: ${CEPH_FS_ID}
|
|
||||||
rgw_ks:
|
rgw_ks:
|
||||||
enabled: true
|
enabled: true
|
||||||
EOF
|
EOF
|
||||||
|
@ -19,7 +19,6 @@ set -xe
|
|||||||
#NOTE: Deploy command
|
#NOTE: Deploy command
|
||||||
CEPH_PUBLIC_NETWORK="$(./tools/deployment/multinode/kube-node-subnet.sh)"
|
CEPH_PUBLIC_NETWORK="$(./tools/deployment/multinode/kube-node-subnet.sh)"
|
||||||
CEPH_CLUSTER_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
|
tee /tmp/radosgw-openstack.yaml <<EOF
|
||||||
endpoints:
|
endpoints:
|
||||||
identity:
|
identity:
|
||||||
@ -41,9 +40,6 @@ deployment:
|
|||||||
bootstrap:
|
bootstrap:
|
||||||
enabled: false
|
enabled: false
|
||||||
conf:
|
conf:
|
||||||
ceph:
|
|
||||||
global:
|
|
||||||
fsid: ${CEPH_FS_ID}
|
|
||||||
rgw_ks:
|
rgw_ks:
|
||||||
enabled: true
|
enabled: true
|
||||||
EOF
|
EOF
|
||||||
|
Loading…
Reference in New Issue
Block a user