Browse Source

add support for vsphere-volume registry and other services

Davis Phillips 7 years ago
parent
commit
e181e66bdb

+ 5 - 1
inventory/hosts.example

@@ -553,7 +553,11 @@ 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']
+#
 # Metrics deployment
 # See: https://docs.openshift.com/enterprise/latest/install_config/cluster_metrics.html
 #

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

@@ -11,10 +11,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

+ 9 - 3
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"""
@@ -98,7 +103,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)
@@ -117,7 +122,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)
@@ -126,6 +131,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

@@ -106,7 +106,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: