mirror of
https://github.com/TECHNOFAB11/zfs-localpv.git
synced 2025-12-12 14:30:12 +01:00
[stable/zfs-localpv]: update charts to 1.8.0 (#344)
Signed-off-by: shubham <shubham.bajpai@mayadata.io>
This commit is contained in:
parent
6e962a1232
commit
bac8b57848
6 changed files with 102 additions and 12 deletions
|
|
@ -1,8 +1,8 @@
|
||||||
apiVersion: v2
|
apiVersion: v2
|
||||||
name: zfs-localpv
|
name: zfs-localpv
|
||||||
description: CSI Driver for dynamic provisioning of ZFS Persistent Local Volumes.
|
description: CSI Driver for dynamic provisioning of ZFS Persistent Local Volumes.
|
||||||
version: 1.7.1
|
version: 1.8.0
|
||||||
appVersion: 1.7.0
|
appVersion: 1.8.0
|
||||||
icon: https://raw.githubusercontent.com/cncf/artwork/master/projects/openebs/icon/color/openebs-icon-color.png
|
icon: https://raw.githubusercontent.com/cncf/artwork/master/projects/openebs/icon/color/openebs-icon-color.png
|
||||||
home: http://www.openebs.io/
|
home: http://www.openebs.io/
|
||||||
keywords:
|
keywords:
|
||||||
|
|
|
||||||
87
deploy/helm/charts/crds/zfsnode.yaml
Normal file
87
deploy/helm/charts/crds/zfsnode.yaml
Normal file
|
|
@ -0,0 +1,87 @@
|
||||||
|
|
||||||
|
##############################################
|
||||||
|
########### ############
|
||||||
|
########### ZFSNode CRD ############
|
||||||
|
########### ############
|
||||||
|
##############################################
|
||||||
|
|
||||||
|
# ZFSNode CRD is autogenerated via `make manifests` command.
|
||||||
|
# Do the modification in the code and run the `make manifests` command
|
||||||
|
# to generate the CRD definition
|
||||||
|
|
||||||
|
---
|
||||||
|
apiVersion: apiextensions.k8s.io/v1
|
||||||
|
kind: CustomResourceDefinition
|
||||||
|
metadata:
|
||||||
|
annotations:
|
||||||
|
controller-gen.kubebuilder.io/version: v0.4.0
|
||||||
|
creationTimestamp: null
|
||||||
|
name: zfsnodes.zfs.openebs.io
|
||||||
|
spec:
|
||||||
|
group: zfs.openebs.io
|
||||||
|
names:
|
||||||
|
kind: ZFSNode
|
||||||
|
listKind: ZFSNodeList
|
||||||
|
plural: zfsnodes
|
||||||
|
shortNames:
|
||||||
|
- zfsnode
|
||||||
|
singular: zfsnode
|
||||||
|
scope: Namespaced
|
||||||
|
versions:
|
||||||
|
- name: v1
|
||||||
|
schema:
|
||||||
|
openAPIV3Schema:
|
||||||
|
description: ZFSNode records information about all zfs pools available in
|
||||||
|
a node. In general, the openebs node-agent creates the ZFSNode object &
|
||||||
|
periodically synchronizing the zfs pools available in the node. ZFSNode
|
||||||
|
has an owner reference pointing to the corresponding node object.
|
||||||
|
properties:
|
||||||
|
apiVersion:
|
||||||
|
description: 'APIVersion defines the versioned schema of this representation
|
||||||
|
of an object. Servers should convert recognized schemas to the latest
|
||||||
|
internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources'
|
||||||
|
type: string
|
||||||
|
kind:
|
||||||
|
description: 'Kind is a string value representing the REST resource this
|
||||||
|
object represents. Servers may infer this from the endpoint the client
|
||||||
|
submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
|
||||||
|
type: string
|
||||||
|
metadata:
|
||||||
|
type: object
|
||||||
|
pools:
|
||||||
|
items:
|
||||||
|
description: Pool specifies attributes of a given zfs pool that exists
|
||||||
|
on the node.
|
||||||
|
properties:
|
||||||
|
free:
|
||||||
|
anyOf:
|
||||||
|
- type: integer
|
||||||
|
- type: string
|
||||||
|
description: Free specifies the available capacity of zfs pool.
|
||||||
|
pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
|
||||||
|
x-kubernetes-int-or-string: true
|
||||||
|
name:
|
||||||
|
description: Name of the zfs pool.
|
||||||
|
minLength: 1
|
||||||
|
type: string
|
||||||
|
uuid:
|
||||||
|
description: UUID denotes a unique identity of a zfs pool.
|
||||||
|
minLength: 1
|
||||||
|
type: string
|
||||||
|
required:
|
||||||
|
- free
|
||||||
|
- name
|
||||||
|
- uuid
|
||||||
|
type: object
|
||||||
|
type: array
|
||||||
|
required:
|
||||||
|
- pools
|
||||||
|
type: object
|
||||||
|
served: true
|
||||||
|
storage: true
|
||||||
|
status:
|
||||||
|
acceptedNames:
|
||||||
|
kind: ""
|
||||||
|
plural: ""
|
||||||
|
conditions: []
|
||||||
|
storedVersions: []
|
||||||
|
|
@ -32,6 +32,9 @@ rules:
|
||||||
- apiGroups: ["storage.k8s.io"]
|
- apiGroups: ["storage.k8s.io"]
|
||||||
resources: ["storageclasses", "csinodes"]
|
resources: ["storageclasses", "csinodes"]
|
||||||
verbs: ["get", "list", "watch"]
|
verbs: ["get", "list", "watch"]
|
||||||
|
- apiGroups: [ "storage.k8s.io" ]
|
||||||
|
resources: [ "csistoragecapacities"]
|
||||||
|
verbs: ["*"]
|
||||||
- apiGroups: [""]
|
- apiGroups: [""]
|
||||||
resources: ["events"]
|
resources: ["events"]
|
||||||
verbs: ["list", "watch", "create", "update", "patch"]
|
verbs: ["list", "watch", "create", "update", "patch"]
|
||||||
|
|
@ -48,7 +51,7 @@ rules:
|
||||||
resources: ["pods"]
|
resources: ["pods"]
|
||||||
verbs: ["get", "list", "watch", "update", "patch"]
|
verbs: ["get", "list", "watch", "update", "patch"]
|
||||||
- apiGroups: ["*"]
|
- apiGroups: ["*"]
|
||||||
resources: ["zfsvolumes", "zfssnapshots", "zfsbackups", "zfsrestores"]
|
resources: ["zfsvolumes", "zfssnapshots", "zfsbackups", "zfsrestores", "zfsnodes"]
|
||||||
verbs: ["*"]
|
verbs: ["*"]
|
||||||
---
|
---
|
||||||
kind: ClusterRoleBinding
|
kind: ClusterRoleBinding
|
||||||
|
|
@ -146,7 +149,7 @@ rules:
|
||||||
resources: ["persistentvolumes", "nodes", "services"]
|
resources: ["persistentvolumes", "nodes", "services"]
|
||||||
verbs: ["get", "list"]
|
verbs: ["get", "list"]
|
||||||
- apiGroups: ["*"]
|
- apiGroups: ["*"]
|
||||||
resources: ["zfsvolumes", "zfssnapshots", "zfsbackups", "zfsrestores"]
|
resources: ["zfsvolumes", "zfssnapshots", "zfsbackups", "zfsrestores", "zfsnodes"]
|
||||||
verbs: ["get", "list", "watch", "create", "update", "patch"]
|
verbs: ["get", "list", "watch", "create", "update", "patch"]
|
||||||
---
|
---
|
||||||
kind: ClusterRoleBinding
|
kind: ClusterRoleBinding
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
# This is a YAML-formatted file.
|
# This is a YAML-formatted file.
|
||||||
# Declare variables to be passed into your templates.
|
# Declare variables to be passed into your templates.
|
||||||
release:
|
release:
|
||||||
version: "1.7.0"
|
version: "1.8.0"
|
||||||
|
|
||||||
imagePullSecrets:
|
imagePullSecrets:
|
||||||
# - name: "image-pull-secret"
|
# - name: "image-pull-secret"
|
||||||
|
|
@ -123,7 +123,7 @@ zfsPlugin:
|
||||||
repository: openebs/zfs-driver
|
repository: openebs/zfs-driver
|
||||||
pullPolicy: IfNotPresent
|
pullPolicy: IfNotPresent
|
||||||
# Overrides the image tag whose default is the chart appVersion.
|
# Overrides the image tag whose default is the chart appVersion.
|
||||||
tag: 1.7.0
|
tag: 1.8.0
|
||||||
|
|
||||||
role: openebs-zfs
|
role: openebs-zfs
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -50,8 +50,8 @@ spec:
|
||||||
type: object
|
type: object
|
||||||
pools:
|
pools:
|
||||||
items:
|
items:
|
||||||
description: Pool specifies attributes of a given zfs pool exists on
|
description: Pool specifies attributes of a given zfs pool that exists
|
||||||
node.
|
on the node.
|
||||||
properties:
|
properties:
|
||||||
free:
|
free:
|
||||||
anyOf:
|
anyOf:
|
||||||
|
|
@ -61,7 +61,7 @@ spec:
|
||||||
pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
|
pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
|
||||||
x-kubernetes-int-or-string: true
|
x-kubernetes-int-or-string: true
|
||||||
name:
|
name:
|
||||||
description: Name of the zfs zfs pool.
|
description: Name of the zfs pool.
|
||||||
minLength: 1
|
minLength: 1
|
||||||
type: string
|
type: string
|
||||||
uuid:
|
uuid:
|
||||||
|
|
|
||||||
|
|
@ -1257,8 +1257,8 @@ spec:
|
||||||
type: object
|
type: object
|
||||||
pools:
|
pools:
|
||||||
items:
|
items:
|
||||||
description: Pool specifies attributes of a given zfs pool exists on
|
description: Pool specifies attributes of a given zfs pool that exists
|
||||||
node.
|
on the node.
|
||||||
properties:
|
properties:
|
||||||
free:
|
free:
|
||||||
anyOf:
|
anyOf:
|
||||||
|
|
@ -1268,7 +1268,7 @@ spec:
|
||||||
pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
|
pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$
|
||||||
x-kubernetes-int-or-string: true
|
x-kubernetes-int-or-string: true
|
||||||
name:
|
name:
|
||||||
description: Name of the zfs zfs pool.
|
description: Name of the zfs pool.
|
||||||
minLength: 1
|
minLength: 1
|
||||||
type: string
|
type: string
|
||||||
uuid:
|
uuid:
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue