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
9a50b52f
Commit
9a50b52f
authored
Oct 09, 2019
by
Sunny
Committed by
Sunny
Oct 14, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update storageos-operator to version 0.2.14
Signed-off-by:
Sunny
<
sunny.gogoi@storageos.com
>
parent
2fe4f5db
Show whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
26 additions
and
5 deletions
+26
-5
Chart.yaml
proposed/storageos-operator/v0.2.14/Chart.yaml
+2
-2
README.md
proposed/storageos-operator/v0.2.14/README.md
+1
-1
questions.yml
proposed/storageos-operator/v0.2.14/questions.yml
+1
-1
job_crd.yaml
proposed/storageos-operator/v0.2.14/templates/job_crd.yaml
+2
-0
nfsserver_crd.yaml
...d/storageos-operator/v0.2.14/templates/nfsserver_crd.yaml
+7
-0
rbac.yaml
proposed/storageos-operator/v0.2.14/templates/rbac.yaml
+4
-0
storageoscluster_crd.yaml
...geos-operator/v0.2.14/templates/storageoscluster_crd.yaml
+4
-0
storageosupgrade_crd.yaml
...geos-operator/v0.2.14/templates/storageosupgrade_crd.yaml
+2
-0
values.yaml
proposed/storageos-operator/v0.2.14/values.yaml
+3
-1
No files found.
proposed/storageos-operator/v0.2.14/Chart.yaml
View file @
9a50b52f
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.1
3
version
:
0.2.1
4
tillerVersion
:
"
>=2.10.0"
tillerVersion
:
"
>=2.10.0"
keywords
:
keywords
:
-
storage
-
storage
...
...
proposed/storageos-operator/v0.2.14/README.md
View file @
9a50b52f
...
@@ -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 |
`{}`
...
...
proposed/storageos-operator/v0.2.14/questions.yml
View file @
9a50b52f
...
@@ -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
...
...
proposed/storageos-operator/v0.2.14/templates/job_crd.yaml
View file @
9a50b52f
...
@@ -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
:
...
...
proposed/storageos-operator/v0.2.14/templates/nfsserver_crd.yaml
View file @
9a50b52f
...
@@ -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.
...
...
proposed/storageos-operator/v0.2.14/templates/rbac.yaml
View file @
9a50b52f
...
@@ -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
:
...
...
proposed/storageos-operator/v0.2.14/templates/storageoscluster_crd.yaml
View file @
9a50b52f
...
@@ -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
...
...
proposed/storageos-operator/v0.2.14/templates/storageosupgrade_crd.yaml
View file @
9a50b52f
...
@@ -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
:
...
...
proposed/storageos-operator/v0.2.14/values.yaml
View file @
9a50b52f
...
@@ -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"
...
...
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