浏览代码

Merge pull request #7254 from dav1x/vsphere-registry

add support for vsphere-volume registry and other services
OpenShift Merge Robot 6 年之前
父节点
当前提交
e849dbf25f

+ 4 - 0
inventory/hosts.example

@@ -520,6 +520,10 @@ debug_level=2
 #openshift_hosted_registry_storage_s3_cloudfront_baseurl=https://myendpoint.cloudfront.net/
 #openshift_hosted_registry_storage_s3_cloudfront_privatekeyfile=/full/path/to/secret.pem
 #openshift_hosted_registry_storage_s3_cloudfront_keypairid=yourpairid
+# vSphere Volume with vSphere Cloud Provider
+# openshift_hosted_registry_storage_kind=vsphere
+# openshift_hosted_registry_storage_access_modes=['ReadWriteOnce']
+# openshift_hosted_registry_storage_annotations=['volume.beta.kubernetes.io/storage-provisioner: kubernetes.io/vsphere-volume']
 #
 # GCS Storage Bucket
 #openshift_hosted_registry_storage_provider=gcs

+ 2 - 2
playbooks/openshift-hosted/private/config.yml

@@ -13,10 +13,10 @@
           status: "In Progress"
           start: "{{ lookup('pipe', 'date +%Y%m%d%H%M%SZ') }}"
 
-- import_playbook: create_persistent_volumes.yml
-
 - import_playbook: openshift_default_storage_class.yml
 
+- import_playbook: create_persistent_volumes.yml
+
 - import_playbook: openshift_hosted_create_projects.yml
 
 - import_playbook: openshift_hosted_router.yml

+ 12 - 6
roles/lib_utils/action_plugins/generate_pv_pvcs_list.py

@@ -18,12 +18,17 @@ class ActionModule(ActionBase):
         volume = self.get_templated(str(varname) + '_volume_name')
         size = self.get_templated(str(varname) + '_volume_size')
         labels = self.task_vars.get(str(varname) + '_labels')
+        annotations = self.task_vars.get(str(varname) + '_annotations')
         if labels:
             labels = self._templar.template(labels)
         else:
             labels = dict()
+        if annotations:
+            annotations = self._templar.template(annotations)
+        else:
+            annotations = list()
         access_modes = self.get_templated(str(varname) + '_access_modes')
-        return (volume, size, labels, access_modes)
+        return (volume, size, labels, annotations, access_modes)
 
     def build_pv_nfs(self, varname=None):
         """Build pv dictionary for nfs storage type"""
@@ -37,7 +42,7 @@ class ActionModule(ActionBase):
                 host = groups['oo_nfs_to_config'][0]
             else:
                 raise errors.AnsibleModuleError("|failed no storage host detected")
-        volume, size, labels, access_modes = self.build_common(varname=varname)
+        volume, size, labels, _, access_modes = self.build_common(varname=varname)
         directory = self.get_templated(str(varname) + '_nfs_directory')
         path = directory + '/' + volume
         return dict(
@@ -52,7 +57,7 @@ class ActionModule(ActionBase):
 
     def build_pv_openstack(self, varname=None):
         """Build pv dictionary for openstack storage type"""
-        volume, size, labels, access_modes = self.build_common(varname=varname)
+        volume, size, labels, _, access_modes = self.build_common(varname=varname)
         filesystem = self.get_templated(str(varname) + '_openstack_filesystem')
         volume_name = self.get_templated(str(varname) + '_volume_name')
         volume_id = self.get_templated(str(varname) + '_openstack_volumeID')
@@ -70,7 +75,7 @@ class ActionModule(ActionBase):
 
     def build_pv_glusterfs(self, varname=None):
         """Build pv dictionary for glusterfs storage type"""
-        volume, size, labels, access_modes = self.build_common(varname=varname)
+        volume, size, labels, _, access_modes = self.build_common(varname=varname)
         endpoints = self.get_templated(str(varname) + '_glusterfs_endpoints')
         path = self.get_templated(str(varname) + '_glusterfs_path')
         read_only = self.get_templated(str(varname) + '_glusterfs_readOnly')
@@ -101,7 +106,7 @@ class ActionModule(ActionBase):
                 elif kind == 'glusterfs':
                     return self.build_pv_glusterfs(varname=varname)
 
-                elif not (kind == 'object' or kind == 'dynamic'):
+                elif not (kind == 'object' or kind == 'dynamic' or kind == 'vsphere'):
                     msg = "|failed invalid storage kind '{0}' for component '{1}'".format(
                         kind,
                         varname)
@@ -120,7 +125,7 @@ class ActionModule(ActionBase):
                 if create_pvc:
                     create_pvc = self._templar.template(create_pvc)
                     if kind != 'object' and create_pv and create_pvc:
-                        volume, size, _, access_modes = self.build_common(varname=varname)
+                        volume, size, _, annotations, access_modes = self.build_common(varname=varname)
                         storageclass = self.task_vars.get(str(varname) + '_storageclass')
                         if storageclass:
                             storageclass = self._templar.template(storageclass)
@@ -129,6 +134,7 @@ class ActionModule(ActionBase):
                         return dict(
                             name="{0}-claim".format(volume),
                             capacity=size,
+                            annotations=annotations,
                             access_modes=access_modes,
                             storageclass=storageclass)
         return None

+ 1 - 1
roles/openshift_hosted/tasks/registry.yml

@@ -77,7 +77,7 @@
       type: persistentVolumeClaim
       claim_name: "{{ openshift_hosted_registry_storage_volume_name }}-claim"
   when:
-  - openshift_hosted_registry_storage_kind | default(none) in ['nfs', 'openstack', 'glusterfs']
+  - openshift_hosted_registry_storage_kind | default(none) in ['nfs', 'openstack', 'glusterfs', 'vsphere']
 
 - include_tasks: storage/glusterfs_endpoints.yml
   when:

+ 6 - 0
roles/openshift_persistent_volumes/templates/persistent-volume-claim.yml.j2

@@ -7,6 +7,12 @@ items:
   kind: "PersistentVolumeClaim"
   metadata:
     name: "{{ claim.name }}"
+{% if claim.annotations %}
+    annotations:
+{% for annotation in claim.annotations %}
+        {{ annotation }}
+{% endfor %}
+{% endif %}
   spec:
     accessModes: {{ claim.access_modes | lib_utils_to_padded_yaml(2, 2) }}
     resources: