Commit de1f77af by Sunny

Update storageos-operator to version 0.2.15

parent 97d73f65
apiVersion: v1 apiVersion: v1
appVersion: "1.4.1" appVersion: "1.5.0"
description: Cloud Native storage for containers description: Cloud Native storage for containers
name: storageos-operator name: storageos-operator
version: 0.2.14 version: 0.2.15
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.1` `operator.image.tag` | StorageOS Operator container image tag | `1.5.0`
`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 | `{}`
...@@ -172,7 +172,7 @@ Parameter | Description | Default ...@@ -172,7 +172,7 @@ Parameter | Description | Default
`cluster.toleration.value` | Value of the pod toleration parameter | `cluster.toleration.value` | Value of the pod toleration parameter |
`cluster.disableTelemetry` | If true, no telemetry data will be collected from the cluster | `false` `cluster.disableTelemetry` | If true, no telemetry data will be collected from the cluster | `false`
`cluster.images.node.repository` | StorageOS Node container image repository | `storageos/node` `cluster.images.node.repository` | StorageOS Node container image repository | `storageos/node`
`cluster.images.node.tag` | StorageOS Node container image tag | `1.4.0` `cluster.images.node.tag` | StorageOS Node container image tag | `1.5.0`
`cluster.csi.enable` | If true, CSI driver is enabled | `true` `cluster.csi.enable` | If true, CSI driver is enabled | `true`
`cluster.csi.deploymentStrategy` | Whether CSI helpers should be deployed as a `deployment` or `statefulset` | `deployment` `cluster.csi.deploymentStrategy` | Whether CSI helpers should be deployed as a `deployment` or `statefulset` | `deployment`
......
...@@ -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.1" default: "1.5.0"
description: "StorageOS Operator image tag" description: "StorageOS Operator image tag"
type: string type: string
label: StorageOS Operator Image Tag label: StorageOS Operator Image Tag
...@@ -73,7 +73,7 @@ questions: ...@@ -73,7 +73,7 @@ questions:
type: string type: string
label: StorageOS Node Container Image Name label: StorageOS Node Container Image Name
- variable: cluster.images.node.tag - variable: cluster.images.node.tag
default: "1.4.0" default: "1.5.0"
description: "StorageOS Node container image tag" description: "StorageOS Node container image tag"
type: string type: string
label: StorageOS Node Container Image Tag label: StorageOS Node Container Image Tag
......
...@@ -28,6 +28,8 @@ spec: ...@@ -28,6 +28,8 @@ spec:
ports: ports:
- containerPort: 60000 - containerPort: 60000
name: metrics name: metrics
- containerPort: 5720
name: podschedwebhook
command: command:
- cluster-operator - cluster-operator
env: env:
...@@ -35,5 +37,15 @@ spec: ...@@ -35,5 +37,15 @@ spec:
valueFrom: valueFrom:
fieldRef: fieldRef:
fieldPath: metadata.namespace fieldPath: metadata.namespace
- name: POD_NAME
valueFrom:
fieldRef:
fieldPath: metadata.name
- name: POD_NAMESPACE
valueFrom:
fieldRef:
fieldPath: metadata.namespace
- name: OPERATOR_NAME - name: OPERATOR_NAME
value: "cluster-operator" value: "cluster-operator"
- name: DISABLE_SCHEDULER_WEBHOOK
value: "false"
...@@ -62,6 +62,7 @@ rules: ...@@ -62,6 +62,7 @@ rules:
- serviceaccounts - serviceaccounts
- secrets - secrets
- services - services
- services/finalizers
- persistentvolumeclaims - persistentvolumeclaims
- persistentvolumes - persistentvolumes
- configmaps - configmaps
...@@ -132,6 +133,18 @@ rules: ...@@ -132,6 +133,18 @@ rules:
- update - update
- get - get
- use - use
- apiGroups:
- admissionregistration.k8s.io
resources:
- mutatingwebhookconfigurations
verbs:
- "*"
- apiGroups:
- monitoring.coreos.com
resources:
- servicemonitors
verbs:
- "*"
--- ---
......
...@@ -27,7 +27,7 @@ operator: ...@@ -27,7 +27,7 @@ operator:
image: image:
repository: storageos/cluster-operator repository: storageos/cluster-operator
tag: 1.4.1 tag: 1.5.0
pullPolicy: IfNotPresent pullPolicy: IfNotPresent
# cluster-specific configuation parameters. # cluster-specific configuation parameters.
...@@ -88,7 +88,7 @@ cluster: ...@@ -88,7 +88,7 @@ cluster:
# [Docker Hub](https://hub.docker.com/r/storageos/node/). # [Docker Hub](https://hub.docker.com/r/storageos/node/).
node: node:
repository: storageos/node repository: storageos/node
tag: 1.4.0 tag: 1.5.0
csi: csi:
enable: true enable: true
......
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