Commit 9a50b52f by Sunny Committed by Sunny

Update storageos-operator to version 0.2.14

parent 2fe4f5db
apiVersion: v1
appVersion: "1.4.0"
appVersion: "1.4.1"
description: Cloud Native storage for containers
name: storageos-operator
version: 0.2.13
version: 0.2.14
tillerVersion: ">=2.10.0"
keywords:
- storage
......
......@@ -150,7 +150,7 @@ Operator chart and their default values.
Parameter | Description | Default
--------- | ----------- | -------
`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`
`podSecurityPolicy.enabled` | If true, create & use PodSecurityPolicy resources | `false`
`podSecurityPolicy.annotations` | Specify pod annotations in the pod security policy | `{}`
......
......@@ -32,7 +32,7 @@ questions:
type: string
label: StorageOS Operator Image Name
- variable: operator.image.tag
default: "1.4.0"
default: "1.4.1"
description: "StorageOS Operator image tag"
type: string
label: StorageOS Operator Image Tag
......
......@@ -12,6 +12,8 @@ spec:
plural: jobs
singular: job
scope: Namespaced
subresources:
status: {}
validation:
openAPIV3Schema:
properties:
......
......@@ -38,6 +38,8 @@ spec:
- nfsserver
singular: nfsserver
scope: Namespaced
subresources:
status: {}
validation:
openAPIV3Schema:
properties:
......@@ -94,6 +96,11 @@ spec:
description: NFSContainer is the container image to use for the NFS
server.
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:
description: Reclamation policy for the persistent volume shared to
the user's pod.
......
......@@ -13,9 +13,13 @@ rules:
- storageos.com
resources:
- storageosclusters
- storageosclusters/status
- storageosupgrades
- storageosupgrades/status
- jobs
- jobs/status
- nfsservers
- nfsservers/status
verbs:
- "*"
- apiGroups:
......
......@@ -26,6 +26,8 @@ spec:
- stos
singular: storageoscluster
scope: Namespaced
subresources:
status: {}
validation:
openAPIV3Schema:
properties:
......@@ -137,6 +139,8 @@ spec:
type: string
initContainer:
type: string
nfsContainer:
type: string
nodeContainer:
type: string
type: object
......
......@@ -12,6 +12,8 @@ spec:
plural: storageosupgrades
singular: storageosupgrade
scope: Namespaced
subresources:
status: {}
validation:
openAPIV3Schema:
properties:
......
......@@ -27,7 +27,7 @@ operator:
image:
repository: storageos/cluster-operator
tag: 1.4.0
tag: 1.4.1
pullPolicy: IfNotPresent
# cluster-specific configuation parameters.
......@@ -148,6 +148,7 @@ cleanup:
- "storageos:pod-fencer"
- "storageos:scheduler-extender"
- "storageos:init"
- "storageos:nfs-provisioner"
- name: clusterrolebinding
command:
- "clusterrolebinding"
......@@ -158,6 +159,7 @@ cleanup:
- "storageos:pod-fencer"
- "storageos:scheduler-extender"
- "storageos:init"
- "storageos:nfs-provisioner"
- name: storageclass
command:
- "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