Commit 7ebfd9c2 by Sunny Committed by Sunny

Update storageos-operator to version 0.2.16

parent 276bdeb6
apiVersion: v1
appVersion: "1.4.1"
appVersion: "1.5.1"
description: Cloud Native storage for containers
name: storageos-operator
version: 0.2.14
version: 0.2.16
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.1`
`operator.image.tag` | StorageOS Operator container image tag | `1.5.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 | `{}`
......@@ -172,7 +172,7 @@ Parameter | Description | Default
`cluster.toleration.value` | Value of the pod toleration parameter |
`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.tag` | StorageOS Node container image tag | `1.4.0`
`cluster.images.node.tag` | StorageOS Node container image tag | `1.5.1`
`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`
......
......@@ -32,7 +32,7 @@ questions:
type: string
label: StorageOS Operator Image Name
- variable: operator.image.tag
default: "1.4.1"
default: "1.5.1"
description: "StorageOS Operator image tag"
type: string
label: StorageOS Operator Image Tag
......@@ -73,7 +73,7 @@ questions:
type: string
label: StorageOS Node Container Image Name
- variable: cluster.images.node.tag
default: "1.4.0"
default: "1.5.1"
description: "StorageOS Node container image tag"
type: string
label: StorageOS Node Container Image Tag
......
......@@ -26,8 +26,12 @@ spec:
image: "{{ .Values.operator.image.repository }}:{{ .Values.operator.image.tag }}"
imagePullPolicy: {{ .Values.operator.image.pullPolicy }}
ports:
- containerPort: 60000
- containerPort: 8383
name: metrics
- containerPort: 8686
name: operatormetrics
- containerPort: 5720
name: podschedwebhook
command:
- cluster-operator
env:
......@@ -35,5 +39,15 @@ spec:
valueFrom:
fieldRef:
fieldPath: metadata.namespace
- name: POD_NAME
valueFrom:
fieldRef:
fieldPath: metadata.name
- name: POD_NAMESPACE
valueFrom:
fieldRef:
fieldPath: metadata.namespace
- name: OPERATOR_NAME
value: "cluster-operator"
value: "storageos-cluster-operator"
- name: DISABLE_SCHEDULER_WEBHOOK
value: "false"
......@@ -62,6 +62,7 @@ rules:
- serviceaccounts
- secrets
- services
- services/finalizers
- persistentvolumeclaims
- persistentvolumes
- configmaps
......@@ -92,6 +93,7 @@ rules:
- storageclasses
- volumeattachments
- csinodeinfos
- csinodes
verbs:
- create
- delete
......@@ -132,6 +134,32 @@ rules:
- update
- get
- use
- apiGroups:
- admissionregistration.k8s.io
resources:
- mutatingwebhookconfigurations
verbs:
- "*"
- apiGroups:
- monitoring.coreos.com
resources:
- servicemonitors
verbs:
- "*"
- apiGroups:
- apps
resources:
- deployments/finalizers
resourceNames:
- storageos-cluster-operator
verbs:
- update
- apiGroups:
- events.k8s.io
resources:
- events
verbs:
- create
---
......
......@@ -27,7 +27,7 @@ operator:
image:
repository: storageos/cluster-operator
tag: 1.4.1
tag: 1.5.1
pullPolicy: IfNotPresent
# cluster-specific configuation parameters.
......@@ -88,7 +88,7 @@ cluster:
# [Docker Hub](https://hub.docker.com/r/storageos/node/).
node:
repository: storageos/node
tag: 1.4.0
tag: 1.5.1
csi:
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