Commit 9a50b52f by Sunny Committed by Sunny

Update storageos-operator to version 0.2.14

parent 2fe4f5db
apiVersion: v1 apiVersion: v1
appVersion: "1.4.0" appVersion: "1.4.1"
description: Cloud Native storage for containers description: Cloud Native storage for containers
name: storageos-operator name: storageos-operator
version: 0.2.13 version: 0.2.14
tillerVersion: ">=2.10.0" tillerVersion: ">=2.10.0"
keywords: keywords:
- storage - storage
......
...@@ -150,7 +150,7 @@ Operator chart and their default values. ...@@ -150,7 +150,7 @@ Operator chart and their default values.
Parameter | Description | Default Parameter | Description | Default
--------- | ----------- | ------- --------- | ----------- | -------
`operator.image.repository` | StorageOS Operator container image repository | `storageos/cluster-operator` `operator.image.repository` | StorageOS Operator container image repository | `storageos/cluster-operator`
`operator.image.tag` | StorageOS Operator container image tag | `1.4.0` `operator.image.tag` | StorageOS Operator container image tag | `1.4.1`
`operator.image.pullPolicy` | StorageOS Operator container image pull policy | `IfNotPresent` `operator.image.pullPolicy` | StorageOS Operator container image pull policy | `IfNotPresent`
`podSecurityPolicy.enabled` | If true, create & use PodSecurityPolicy resources | `false` `podSecurityPolicy.enabled` | If true, create & use PodSecurityPolicy resources | `false`
`podSecurityPolicy.annotations` | Specify pod annotations in the pod security policy | `{}` `podSecurityPolicy.annotations` | Specify pod annotations in the pod security policy | `{}`
......
...@@ -32,7 +32,7 @@ questions: ...@@ -32,7 +32,7 @@ questions:
type: string type: string
label: StorageOS Operator Image Name label: StorageOS Operator Image Name
- variable: operator.image.tag - variable: operator.image.tag
default: "1.4.0" default: "1.4.1"
description: "StorageOS Operator image tag" description: "StorageOS Operator image tag"
type: string type: string
label: StorageOS Operator Image Tag label: StorageOS Operator Image Tag
......
...@@ -12,6 +12,8 @@ spec: ...@@ -12,6 +12,8 @@ spec:
plural: jobs plural: jobs
singular: job singular: job
scope: Namespaced scope: Namespaced
subresources:
status: {}
validation: validation:
openAPIV3Schema: openAPIV3Schema:
properties: properties:
......
...@@ -38,6 +38,8 @@ spec: ...@@ -38,6 +38,8 @@ spec:
- nfsserver - nfsserver
singular: nfsserver singular: nfsserver
scope: Namespaced scope: Namespaced
subresources:
status: {}
validation: validation:
openAPIV3Schema: openAPIV3Schema:
properties: properties:
...@@ -94,6 +96,11 @@ spec: ...@@ -94,6 +96,11 @@ spec:
description: NFSContainer is the container image to use for the NFS description: NFSContainer is the container image to use for the NFS
server. server.
type: string type: string
persistentVolumeClaim:
description: PersistentVolumeClaim is the PVC source of the PVC to be
used with the NFS Server. If not specified, a new PVC is provisioned
and used.
type: object
persistentVolumeReclaimPolicy: persistentVolumeReclaimPolicy:
description: Reclamation policy for the persistent volume shared to description: Reclamation policy for the persistent volume shared to
the user's pod. the user's pod.
......
...@@ -13,9 +13,13 @@ rules: ...@@ -13,9 +13,13 @@ rules:
- storageos.com - storageos.com
resources: resources:
- storageosclusters - storageosclusters
- storageosclusters/status
- storageosupgrades - storageosupgrades
- storageosupgrades/status
- jobs - jobs
- jobs/status
- nfsservers - nfsservers
- nfsservers/status
verbs: verbs:
- "*" - "*"
- apiGroups: - apiGroups:
......
...@@ -26,6 +26,8 @@ spec: ...@@ -26,6 +26,8 @@ spec:
- stos - stos
singular: storageoscluster singular: storageoscluster
scope: Namespaced scope: Namespaced
subresources:
status: {}
validation: validation:
openAPIV3Schema: openAPIV3Schema:
properties: properties:
...@@ -137,6 +139,8 @@ spec: ...@@ -137,6 +139,8 @@ spec:
type: string type: string
initContainer: initContainer:
type: string type: string
nfsContainer:
type: string
nodeContainer: nodeContainer:
type: string type: string
type: object type: object
......
...@@ -12,6 +12,8 @@ spec: ...@@ -12,6 +12,8 @@ spec:
plural: storageosupgrades plural: storageosupgrades
singular: storageosupgrade singular: storageosupgrade
scope: Namespaced scope: Namespaced
subresources:
status: {}
validation: validation:
openAPIV3Schema: openAPIV3Schema:
properties: properties:
......
...@@ -27,7 +27,7 @@ operator: ...@@ -27,7 +27,7 @@ operator:
image: image:
repository: storageos/cluster-operator repository: storageos/cluster-operator
tag: 1.4.0 tag: 1.4.1
pullPolicy: IfNotPresent pullPolicy: IfNotPresent
# cluster-specific configuation parameters. # cluster-specific configuation parameters.
...@@ -148,6 +148,7 @@ cleanup: ...@@ -148,6 +148,7 @@ cleanup:
- "storageos:pod-fencer" - "storageos:pod-fencer"
- "storageos:scheduler-extender" - "storageos:scheduler-extender"
- "storageos:init" - "storageos:init"
- "storageos:nfs-provisioner"
- name: clusterrolebinding - name: clusterrolebinding
command: command:
- "clusterrolebinding" - "clusterrolebinding"
...@@ -158,6 +159,7 @@ cleanup: ...@@ -158,6 +159,7 @@ cleanup:
- "storageos:pod-fencer" - "storageos:pod-fencer"
- "storageos:scheduler-extender" - "storageos:scheduler-extender"
- "storageos:init" - "storageos:init"
- "storageos:nfs-provisioner"
- name: storageclass - name: storageclass
command: command:
- "storageclass" - "storageclass"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment