Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
C
charts
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Rancher商店
charts
Commits
788abf5a
Commit
788abf5a
authored
May 16, 2019
by
Simon Croome
Committed by
Guangbo
May 17, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bump to storageos-operator 1.2.0 and node 1.2.1
parent
0d9db671
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
39 additions
and
11 deletions
+39
-11
Chart.yaml
proposed/storageos-operator/Chart.yaml
+2
-2
README.md
proposed/storageos-operator/README.md
+5
-4
questions.yml
proposed/storageos-operator/questions.yml
+2
-2
cleanup.yaml
proposed/storageos-operator/templates/cleanup.yaml
+1
-0
rbac.yaml
proposed/storageos-operator/templates/rbac.yaml
+15
-1
storageoscluster_cr.yaml
...sed/storageos-operator/templates/storageoscluster_cr.yaml
+1
-0
storageoscluster_crd.yaml
...ed/storageos-operator/templates/storageoscluster_crd.yaml
+6
-0
values.yaml
proposed/storageos-operator/values.yaml
+7
-2
No files found.
proposed/storageos-operator/Chart.yaml
View file @
788abf5a
apiVersion
:
v1
appVersion
:
"
1.
1
.0"
appVersion
:
"
1.
2
.0"
description
:
Cloud Native storage for containers
name
:
storageos-operator
version
:
0.
1
.0
version
:
0.
2
.0
keywords
:
-
storage
-
block-storage
...
...
proposed/storageos-operator/README.md
View file @
788abf5a
...
...
@@ -148,9 +148,9 @@ Operator chart and their default values.
Parameter | Description | Default
--------- | ----------- | -------
`operator.image.repository`
| StorageOS
Cluste
r container image repository |
`storageos/cluster-operator`
`operator.image.tag`
| StorageOS
Cluster container image tag |
`1.1
.0`
`operator.image.pullPolicy`
| StorageOS
Cluste
r container image pull policy |
`IfNotPresent`
`operator.image.repository`
| StorageOS
Operato
r container image repository |
`storageos/cluster-operator`
`operator.image.tag`
| StorageOS
Operator container image tag |
`1.2
.0`
`operator.image.pullPolicy`
| StorageOS
Operato
r container image pull policy |
`IfNotPresent`
`podSecurityPolicy.enabled`
| If true, create & use PodSecurityPolicy resources |
`false`
`podSecurityPolicy.annotations`
| Specify pod annotations in the pod security policy |
`{}`
`cluster.create`
| If true, auto-create the StorageOS cluster |
`true`
...
...
@@ -171,8 +171,9 @@ 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.2.
0
`
`cluster.images.node.tag`
| StorageOS Node container image tag |
`1.2.
1
`
`cluster.csi.enable`
| If true, CSI driver is enabled |
`true`
`cluster.csi.deploymentStrategy`
| Whethe CSI helpers should be deployed as a
`deployment`
or
`statefulset`
|
`deployment`
## Deleting a StorageOS Cluster
...
...
proposed/storageos-operator/questions.yml
View file @
788abf5a
...
...
@@ -32,7 +32,7 @@ questions:
type
:
string
label
:
StorageOS Operator Image Name
-
variable
:
operator.image.tag
default
:
"
1.
1
.0"
default
:
"
1.
2
.0"
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.2.
0
"
default
:
"
1.2.
1
"
description
:
"
StorageOS
Node
container
image
tag"
type
:
string
label
:
StorageOS Node Container Image Tag
...
...
proposed/storageos-operator/templates/cleanup.yaml
View file @
788abf5a
...
...
@@ -124,6 +124,7 @@ spec:
{{
- range .command
}}
-
{{
. | quote
}}
{{
- end
}}
-
--ignore-not-found=true
restartPolicy
:
Never
backoffLimit
:
4
...
...
proposed/storageos-operator/templates/rbac.yaml
View file @
788abf5a
...
...
@@ -22,6 +22,7 @@ rules:
resources
:
-
statefulsets
-
daemonsets
-
deployments
verbs
:
-
"
*"
-
apiGroups
:
...
...
@@ -99,7 +100,20 @@ rules:
verbs
:
-
create
-
delete
# OpenShift specific rule.
-
apiGroups
:
-
security.openshift.io
resources
:
-
securitycontextconstraints
verbs
:
-
create
-
delete
-
update
-
get
-
use
resourceNames
:
-
privileged
---
# Bind operator service account to storageos-operator role
...
...
proposed/storageos-operator/templates/storageoscluster_cr.yaml
View file @
788abf5a
...
...
@@ -22,6 +22,7 @@ spec:
csi
:
enable
:
{{
.Values.cluster.csi.enable
}}
deploymentStrategy
:
{{
.Values.cluster.csi.deploymentStrategy
}}
{{
- if .Values.cluster.sharedDir
}}
sharedDir
:
{{
.Values.cluster.sharedDir
}}
...
...
proposed/storageos-operator/templates/storageoscluster_crd.yaml
View file @
788abf5a
...
...
@@ -41,6 +41,8 @@ spec:
type
:
string
namespace
:
type
:
string
k8sDistro
:
type
:
string
disableFencing
:
type
:
boolean
disableTelemetry
:
...
...
@@ -57,6 +59,8 @@ spec:
type
:
string
csiExternalAttacherContainer
:
type
:
string
csiLivenessProbeContainer
:
type
:
string
csi
:
properties
:
enable
:
...
...
@@ -67,6 +71,8 @@ spec:
type
:
boolean
enableNodePublishCreds
:
type
:
boolean
deploymentStrategy
:
type
:
string
service
:
properties
:
name
:
...
...
proposed/storageos-operator/values.yaml
View file @
788abf5a
...
...
@@ -27,7 +27,7 @@ operator:
image
:
repository
:
storageos/cluster-operator
tag
:
1.
1
.0
tag
:
1.
2
.0
pullPolicy
:
IfNotPresent
# cluster-specific configuation parameters.
...
...
@@ -88,10 +88,11 @@ cluster:
# [Docker Hub](https://hub.docker.com/r/storageos/node/).
node
:
repository
:
storageos/node
tag
:
1.2.
0
tag
:
1.2.
1
csi
:
enable
:
true
deploymentStrategy
:
deployment
# The following is used for cleaning up unmanaged cluster resources when
# auto-install is enabled.
...
...
@@ -104,6 +105,10 @@ cleanup:
command
:
-
"
statefulset"
-
"
storageos-statefulset"
-
name
:
csi-helper
command
:
-
"
deployment"
-
"
storageos-csi-helper"
-
name
:
serviceaccount
command
:
-
"
serviceaccount"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment