From 6da7e168da693f6237e11c1fc1446f8433fb0839 Mon Sep 17 00:00:00 2001 From: Tarun Gupta Akirala Date: Wed, 18 Dec 2024 11:39:32 -0800 Subject: [PATCH] feat: add cosi helm chart Signed-off-by: Tarun Gupta Akirala --- stable/cosi/Chart.yaml | 13 ++ stable/cosi/README.md | 29 ++++ ...ketaccessclasses.objectstorage.k8s.io.yaml | 65 ++++++++ ...n_bucketaccesses.objectstorage.k8s.io.yaml | 90 +++++++++++ ...ion_bucketclaims.objectstorage.k8s.io.yaml | 85 ++++++++++ ...on_bucketclasses.objectstorage.k8s.io.yaml | 65 ++++++++ ...finition_buckets.objectstorage.k8s.io.yaml | 148 ++++++++++++++++++ ...t_container-object-storage-controller.yaml | 45 ++++++ ...tainer-object-storage-controller-role.yaml | 65 ++++++++ ...g_container-object-storage-controller.yaml | 24 +++ ...e_container-object-storage-controller.yaml | 28 ++++ ...g_container-object-storage-controller.yaml | 24 +++ ...ontainer-object-storage-controller-sa.yaml | 15 ++ stable/cosi/upgrade_operator.sh | 65 ++++++++ 14 files changed, 761 insertions(+) create mode 100644 stable/cosi/Chart.yaml create mode 100644 stable/cosi/README.md create mode 100644 stable/cosi/crds/apiextensions.k8s.io_v1_customresourcedefinition_bucketaccessclasses.objectstorage.k8s.io.yaml create mode 100644 stable/cosi/crds/apiextensions.k8s.io_v1_customresourcedefinition_bucketaccesses.objectstorage.k8s.io.yaml create mode 100644 stable/cosi/crds/apiextensions.k8s.io_v1_customresourcedefinition_bucketclaims.objectstorage.k8s.io.yaml create mode 100644 stable/cosi/crds/apiextensions.k8s.io_v1_customresourcedefinition_bucketclasses.objectstorage.k8s.io.yaml create mode 100644 stable/cosi/crds/apiextensions.k8s.io_v1_customresourcedefinition_buckets.objectstorage.k8s.io.yaml create mode 100644 stable/cosi/templates/apps_v1_deployment_container-object-storage-controller.yaml create mode 100644 stable/cosi/templates/rbac.authorization.k8s.io_v1_clusterrole_container-object-storage-controller-role.yaml create mode 100644 stable/cosi/templates/rbac.authorization.k8s.io_v1_clusterrolebinding_container-object-storage-controller.yaml create mode 100644 stable/cosi/templates/rbac.authorization.k8s.io_v1_role_container-object-storage-controller.yaml create mode 100644 stable/cosi/templates/rbac.authorization.k8s.io_v1_rolebinding_container-object-storage-controller.yaml create mode 100644 stable/cosi/templates/v1_serviceaccount_container-object-storage-controller-sa.yaml create mode 100755 stable/cosi/upgrade_operator.sh diff --git a/stable/cosi/Chart.yaml b/stable/cosi/Chart.yaml new file mode 100644 index 000000000..42cf5ae2c --- /dev/null +++ b/stable/cosi/Chart.yaml @@ -0,0 +1,13 @@ +apiVersion: v2 +name: cosi +version: 0.0.1-alpha.1 +appVersion: 0.0.1-alpha.1 +description: Container Object Storage Interface (COSI) provisioner for Kubernetes +keywords: +- cosi +icon: https://raw.githubusercontent.com/container-object-storage-interface/container-object-storage-interface.github.io/refs/heads/master/static/img/logo-15.svg +home: https://container-object-storage-interface.github.io/ +sources: +- https://github.com/kubernetes-sigs/container-object-storage-interface +maintainers: +- name: takirala diff --git a/stable/cosi/README.md b/stable/cosi/README.md new file mode 100644 index 000000000..4afdd48e5 --- /dev/null +++ b/stable/cosi/README.md @@ -0,0 +1,29 @@ +# Container Object Storage Interface (COSI) Helm Chart + +This Helm chart deploys the Kubernetes SIGs [Container Object Storage Interface (COSI)](https://github.com/kubernetes-sigs/container-object-storage-interface) components onto a Kubernetes cluster. + +## Overview + +COSI provides a standardized interface for object storage in Kubernetes, enabling dynamic provisioning and management of object storage buckets and access credentials. + +This chart includes: +- COSI Controller +- Sidecar containers +- CRDs required for COSI + +## Prerequisites + +- Kubernetes 1.21 or newer +- Helm 3.5.0 or newer +- [kubectl](https://kubernetes.io/docs/tasks/tools/install-kubectl/) installed and configured +- Permissions to install Custom Resource Definitions (CRDs) + +## Installation + +### Add the Helm Repository + +```bash +helm repo add mesosphere-stable https://mesosphere.github.io/charts/stable +helm repo update +helm install cosi-release mesosphere-stable/cosi --create-namespace +``` diff --git a/stable/cosi/crds/apiextensions.k8s.io_v1_customresourcedefinition_bucketaccessclasses.objectstorage.k8s.io.yaml b/stable/cosi/crds/apiextensions.k8s.io_v1_customresourcedefinition_bucketaccessclasses.objectstorage.k8s.io.yaml new file mode 100644 index 000000000..81cb98b81 --- /dev/null +++ b/stable/cosi/crds/apiextensions.k8s.io_v1_customresourcedefinition_bucketaccessclasses.objectstorage.k8s.io.yaml @@ -0,0 +1,65 @@ +apiVersion: apiextensions.k8s.io/v1 +kind: CustomResourceDefinition +metadata: + annotations: + api-approved.kubernetes.io: https://github.com/kubernetes/enhancements/tree/master/keps/sig-storage/1979-object-storage-support + controller-gen.kubebuilder.io/version: v0.16.4 + objectstorage.k8s.io/authors: Kubernetes Authors + objectstorage.k8s.io/license: Apache V2 + objectstorage.k8s.io/support: https://github.com/kubernetes-sigs/container-object-storage-api + name: bucketaccessclasses.objectstorage.k8s.io +spec: + group: objectstorage.k8s.io + names: + kind: BucketAccessClass + listKind: BucketAccessClassList + plural: bucketaccessclasses + singular: bucketaccessclass + scope: Cluster + versions: + - name: v1alpha1 + schema: + openAPIV3Schema: + 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 + authenticationType: + description: |- + AuthenticationType denotes the style of authentication + It can be one of + Key - access, secret tokens based authentication + IAM - implicit authentication of pods to the OSP based on service account mappings + type: string + driverName: + description: |- + DriverName is the name of driver associated with + this BucketAccess + 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 + parameters: + additionalProperties: + type: string + description: |- + Parameters is an opaque map for passing in configuration to a driver + for granting access to a bucket + type: object + required: + - authenticationType + - driverName + type: object + served: true + storage: true diff --git a/stable/cosi/crds/apiextensions.k8s.io_v1_customresourcedefinition_bucketaccesses.objectstorage.k8s.io.yaml b/stable/cosi/crds/apiextensions.k8s.io_v1_customresourcedefinition_bucketaccesses.objectstorage.k8s.io.yaml new file mode 100644 index 000000000..27221f47c --- /dev/null +++ b/stable/cosi/crds/apiextensions.k8s.io_v1_customresourcedefinition_bucketaccesses.objectstorage.k8s.io.yaml @@ -0,0 +1,90 @@ +apiVersion: apiextensions.k8s.io/v1 +kind: CustomResourceDefinition +metadata: + annotations: + api-approved.kubernetes.io: https://github.com/kubernetes/enhancements/tree/master/keps/sig-storage/1979-object-storage-support + controller-gen.kubebuilder.io/version: v0.16.4 + objectstorage.k8s.io/authors: Kubernetes Authors + objectstorage.k8s.io/license: Apache V2 + objectstorage.k8s.io/support: https://github.com/kubernetes-sigs/container-object-storage-api + name: bucketaccesses.objectstorage.k8s.io +spec: + group: objectstorage.k8s.io + names: + kind: BucketAccess + listKind: BucketAccessList + plural: bucketaccesses + singular: bucketaccess + scope: Namespaced + versions: + - name: v1alpha1 + schema: + openAPIV3Schema: + 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 + spec: + properties: + bucketAccessClassName: + description: BucketAccessClassName is the name of the BucketAccessClass + type: string + bucketClaimName: + description: BucketClaimName is the name of the BucketClaim. + type: string + credentialsSecretName: + description: |- + CredentialsSecretName is the name of the secret that COSI should populate + with the credentials. If a secret by this name already exists, then it is + assumed that credentials have already been generated. It is not overridden. + This secret is deleted when the BucketAccess is delted. + type: string + protocol: + description: |- + Protocol is the name of the Protocol + that this access credential is supposed to support + If left empty, it will choose the protocol supported + by the bucket. If the bucket supports multiple protocols, + the end protocol is determined by the driver. + type: string + serviceAccountName: + description: |- + ServiceAccountName is the name of the serviceAccount that COSI will map + to the OSP service account when IAM styled authentication is specified + type: string + required: + - bucketAccessClassName + - bucketClaimName + - credentialsSecretName + type: object + status: + properties: + accessGranted: + description: AccessGranted indicates the successful grant of privileges + to access the bucket + type: boolean + accountID: + description: |- + AccountID is the unique ID for the account in the OSP. It will be populated + by the COSI sidecar once access has been successfully granted. + type: string + type: object + type: object + served: true + storage: true + subresources: + status: {} diff --git a/stable/cosi/crds/apiextensions.k8s.io_v1_customresourcedefinition_bucketclaims.objectstorage.k8s.io.yaml b/stable/cosi/crds/apiextensions.k8s.io_v1_customresourcedefinition_bucketclaims.objectstorage.k8s.io.yaml new file mode 100644 index 000000000..208fd601f --- /dev/null +++ b/stable/cosi/crds/apiextensions.k8s.io_v1_customresourcedefinition_bucketclaims.objectstorage.k8s.io.yaml @@ -0,0 +1,85 @@ +apiVersion: apiextensions.k8s.io/v1 +kind: CustomResourceDefinition +metadata: + annotations: + api-approved.kubernetes.io: https://github.com/kubernetes/enhancements/tree/master/keps/sig-storage/1979-object-storage-support + controller-gen.kubebuilder.io/version: v0.16.4 + objectstorage.k8s.io/authors: Kubernetes Authors + objectstorage.k8s.io/license: Apache V2 + objectstorage.k8s.io/support: https://github.com/kubernetes-sigs/container-object-storage-api + name: bucketclaims.objectstorage.k8s.io +spec: + group: objectstorage.k8s.io + names: + kind: BucketClaim + listKind: BucketClaimList + plural: bucketclaims + singular: bucketclaim + scope: Namespaced + versions: + - name: v1alpha1 + schema: + openAPIV3Schema: + 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 + spec: + properties: + bucketClassName: + description: Name of the BucketClass + type: string + existingBucketName: + description: |- + Name of a bucket object that was manually + created to import a bucket created outside of COSI + If unspecified, then a new Bucket will be dynamically provisioned + type: string + protocols: + description: |- + Protocols are the set of data API this bucket is required to support. + The possible values for protocol are: + - S3: Indicates Amazon S3 protocol + - Azure: Indicates Microsoft Azure BlobStore protocol + - GCS: Indicates Google Cloud Storage protocol + items: + type: string + type: array + required: + - protocols + type: object + status: + properties: + bucketName: + description: |- + BucketName is the name of the provisioned Bucket in response + to this BucketClaim. It is generated and set by the COSI controller + before making the creation request to the OSP backend. + type: string + bucketReady: + description: |- + BucketReady indicates that the bucket is ready for consumpotion + by workloads + type: boolean + required: + - bucketReady + type: object + type: object + served: true + storage: true + subresources: + status: {} diff --git a/stable/cosi/crds/apiextensions.k8s.io_v1_customresourcedefinition_bucketclasses.objectstorage.k8s.io.yaml b/stable/cosi/crds/apiextensions.k8s.io_v1_customresourcedefinition_bucketclasses.objectstorage.k8s.io.yaml new file mode 100644 index 000000000..72d0efe7e --- /dev/null +++ b/stable/cosi/crds/apiextensions.k8s.io_v1_customresourcedefinition_bucketclasses.objectstorage.k8s.io.yaml @@ -0,0 +1,65 @@ +apiVersion: apiextensions.k8s.io/v1 +kind: CustomResourceDefinition +metadata: + annotations: + api-approved.kubernetes.io: https://github.com/kubernetes/enhancements/tree/master/keps/sig-storage/1979-object-storage-support + controller-gen.kubebuilder.io/version: v0.16.4 + objectstorage.k8s.io/authors: Kubernetes Authors + objectstorage.k8s.io/license: Apache V2 + objectstorage.k8s.io/support: https://github.com/kubernetes-sigs/container-object-storage-api + name: bucketclasses.objectstorage.k8s.io +spec: + group: objectstorage.k8s.io + names: + kind: BucketClass + listKind: BucketClassList + plural: bucketclasses + singular: bucketclass + scope: Cluster + versions: + - name: v1alpha1 + schema: + openAPIV3Schema: + 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 + deletionPolicy: + default: Retain + description: |- + DeletionPolicy is used to specify how COSI should handle deletion of this + bucket. There are 2 possible values: + - Retain: Indicates that the bucket should not be deleted from the OSP + - Delete: Indicates that the bucket should be deleted from the OSP + once all the workloads accessing this bucket are done + type: string + driverName: + description: DriverName is the name of driver associated with this bucket + 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 + parameters: + additionalProperties: + type: string + description: |- + Parameters is an opaque map for passing in configuration to a driver + for creating the bucket + type: object + required: + - deletionPolicy + - driverName + type: object + served: true + storage: true diff --git a/stable/cosi/crds/apiextensions.k8s.io_v1_customresourcedefinition_buckets.objectstorage.k8s.io.yaml b/stable/cosi/crds/apiextensions.k8s.io_v1_customresourcedefinition_buckets.objectstorage.k8s.io.yaml new file mode 100644 index 000000000..496023ebb --- /dev/null +++ b/stable/cosi/crds/apiextensions.k8s.io_v1_customresourcedefinition_buckets.objectstorage.k8s.io.yaml @@ -0,0 +1,148 @@ +apiVersion: apiextensions.k8s.io/v1 +kind: CustomResourceDefinition +metadata: + annotations: + api-approved.kubernetes.io: https://github.com/kubernetes/enhancements/tree/master/keps/sig-storage/1979-object-storage-support + controller-gen.kubebuilder.io/version: v0.16.4 + objectstorage.k8s.io/authors: Kubernetes Authors + objectstorage.k8s.io/license: Apache V2 + objectstorage.k8s.io/support: https://github.com/kubernetes-sigs/container-object-storage-api + name: buckets.objectstorage.k8s.io +spec: + group: objectstorage.k8s.io + names: + kind: Bucket + listKind: BucketList + plural: buckets + singular: bucket + scope: Cluster + versions: + - name: v1alpha1 + schema: + openAPIV3Schema: + 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 + spec: + properties: + bucketClaim: + description: |- + Name of the BucketClaim that resulted in the creation of this Bucket + In case the Bucket object was created manually, then this should refer + to the BucketClaim with which this Bucket should be bound + properties: + apiVersion: + description: API version of the referent. + type: string + fieldPath: + description: |- + If referring to a piece of an object instead of an entire object, this string + should contain a valid JSON/Go field access statement, such as desiredState.manifest.containers[2]. + For example, if the object reference is to a container within a pod, this would take on a value like: + "spec.containers{name}" (where "name" refers to the name of the container that triggered + the event) or if no container name is specified "spec.containers[2]" (container with + index 2 in this pod). This syntax is chosen only to have some well-defined way of + referencing a part of an object. + type: string + kind: + description: |- + Kind of the referent. + More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds + type: string + name: + description: |- + Name of the referent. + More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names + type: string + namespace: + description: |- + Namespace of the referent. + More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/namespaces/ + type: string + resourceVersion: + description: |- + Specific resourceVersion to which this reference is made, if any. + More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#concurrency-control-and-consistency + type: string + uid: + description: |- + UID of the referent. + More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#uids + type: string + type: object + x-kubernetes-map-type: atomic + bucketClassName: + description: Name of the BucketClass specified in the BucketRequest + type: string + deletionPolicy: + default: Retain + description: |- + DeletionPolicy is used to specify how COSI should handle deletion of this + bucket. There are 2 possible values: + - Retain: Indicates that the bucket should not be deleted from the OSP (default) + - Delete: Indicates that the bucket should be deleted from the OSP + once all the workloads accessing this bucket are done + type: string + driverName: + description: DriverName is the name of driver associated with this + bucket + type: string + existingBucketID: + description: |- + ExistingBucketID is the unique id of the bucket in the OSP. This field should be + used to specify a bucket that has been created outside of COSI. + This field will be empty when the Bucket is dynamically provisioned by COSI. + type: string + parameters: + additionalProperties: + type: string + type: object + protocols: + description: |- + Protocols are the set of data APIs this bucket is expected to support. + The possible values for protocol are: + - S3: Indicates Amazon S3 protocol + - Azure: Indicates Microsoft Azure BlobStore protocol + - GCS: Indicates Google Cloud Storage protocol + items: + type: string + type: array + required: + - bucketClaim + - bucketClassName + - driverName + - protocols + type: object + status: + properties: + bucketID: + description: |- + BucketID is the unique id of the bucket in the OSP. This field will be + populated by COSI. + type: string + bucketReady: + description: |- + BucketReady is a boolean condition to reflect the successful creation + of a bucket. + type: boolean + type: object + type: object + served: true + storage: true + subresources: + status: {} diff --git a/stable/cosi/templates/apps_v1_deployment_container-object-storage-controller.yaml b/stable/cosi/templates/apps_v1_deployment_container-object-storage-controller.yaml new file mode 100644 index 000000000..a52c70e31 --- /dev/null +++ b/stable/cosi/templates/apps_v1_deployment_container-object-storage-controller.yaml @@ -0,0 +1,45 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + annotations: + api-approved.kubernetes.io: https://github.com/kubernetes/enhancements/tree/master/keps/sig-storage/1979-object-storage-support + objectstorage.k8s.io/authors: Kubernetes Authors + objectstorage.k8s.io/license: Apache V2 + objectstorage.k8s.io/support: https://github.com/kubernetes-sigs/container-object-storage-api + labels: + app: container-object-storage-interface-controller + app.kubernetes.io/component: controller + app.kubernetes.io/managed-by: kustomize + app.kubernetes.io/name: container-object-storage-interface-controller + app.kubernetes.io/part-of: container-object-storage-interface + name: container-object-storage-controller + namespace: container-object-storage-system +spec: + replicas: 1 + selector: + matchLabels: + app: container-object-storage-interface-controller + strategy: + rollingUpdate: + maxSurge: 1 + maxUnavailable: 0 + template: + metadata: + annotations: + api-approved.kubernetes.io: https://github.com/kubernetes/enhancements/tree/master/keps/sig-storage/1979-object-storage-support + objectstorage.k8s.io/authors: Kubernetes Authors + objectstorage.k8s.io/license: Apache V2 + objectstorage.k8s.io/support: https://github.com/kubernetes-sigs/container-object-storage-api + labels: + app: container-object-storage-interface-controller + app.kubernetes.io/component: controller + app.kubernetes.io/managed-by: kustomize + app.kubernetes.io/name: container-object-storage-interface-controller + app.kubernetes.io/part-of: container-object-storage-interface + spec: + containers: + - args: + - --v=5 + image: gcr.io/k8s-staging-sig-storage/objectstorage-controller:v20221027-v0.1.1-8-g300019f + name: objectstorage-controller + serviceAccountName: container-object-storage-controller-sa diff --git a/stable/cosi/templates/rbac.authorization.k8s.io_v1_clusterrole_container-object-storage-controller-role.yaml b/stable/cosi/templates/rbac.authorization.k8s.io_v1_clusterrole_container-object-storage-controller-role.yaml new file mode 100644 index 000000000..451a603f0 --- /dev/null +++ b/stable/cosi/templates/rbac.authorization.k8s.io_v1_clusterrole_container-object-storage-controller-role.yaml @@ -0,0 +1,65 @@ +apiVersion: rbac.authorization.k8s.io/v1 +kind: ClusterRole +metadata: + annotations: + api-approved.kubernetes.io: https://github.com/kubernetes/enhancements/tree/master/keps/sig-storage/1979-object-storage-support + objectstorage.k8s.io/authors: Kubernetes Authors + objectstorage.k8s.io/license: Apache V2 + objectstorage.k8s.io/support: https://github.com/kubernetes-sigs/container-object-storage-api + labels: + app.kubernetes.io/component: controller + app.kubernetes.io/managed-by: kustomize + app.kubernetes.io/name: container-object-storage-interface-controller + app.kubernetes.io/part-of: container-object-storage-interface + name: container-object-storage-controller-role + namespace: default +rules: +- apiGroups: + - objectstorage.k8s.io + resources: + - bucketclaims + - bucketaccesses + - bucketclaims/status + - bucketaccesses/status + verbs: + - get + - list + - watch + - update +- apiGroups: + - objectstorage.k8s.io + resources: + - buckets + verbs: + - get + - list + - watch + - update + - create + - delete +- apiGroups: + - objectstorage.k8s.io + resources: + - bucketclasses + - bucketaccessclasses + verbs: + - get + - list +- apiGroups: + - "" + resources: + - events + verbs: + - list + - watch + - create + - update + - patch +- apiGroups: + - "" + resources: + - configmaps + - serviceaccounts + verbs: + - list + - get diff --git a/stable/cosi/templates/rbac.authorization.k8s.io_v1_clusterrolebinding_container-object-storage-controller.yaml b/stable/cosi/templates/rbac.authorization.k8s.io_v1_clusterrolebinding_container-object-storage-controller.yaml new file mode 100644 index 000000000..deb4a86fa --- /dev/null +++ b/stable/cosi/templates/rbac.authorization.k8s.io_v1_clusterrolebinding_container-object-storage-controller.yaml @@ -0,0 +1,24 @@ +apiVersion: rbac.authorization.k8s.io/v1 +kind: ClusterRoleBinding +metadata: + annotations: + api-approved.kubernetes.io: https://github.com/kubernetes/enhancements/tree/master/keps/sig-storage/1979-object-storage-support + objectstorage.k8s.io/authors: Kubernetes Authors + objectstorage.k8s.io/license: Apache V2 + objectstorage.k8s.io/support: https://github.com/kubernetes-sigs/container-object-storage-api + labels: + app.kubernetes.io/component: controller + app.kubernetes.io/managed-by: kustomize + app.kubernetes.io/name: container-object-storage-interface-controller + app.kubernetes.io/part-of: container-object-storage-interface + app.kubernetes.io/version: main + name: container-object-storage-controller + namespace: default +roleRef: + apiGroup: rbac.authorization.k8s.io + kind: ClusterRole + name: container-object-storage-controller-role +subjects: +- kind: ServiceAccount + name: container-object-storage-controller-sa + namespace: container-object-storage-system diff --git a/stable/cosi/templates/rbac.authorization.k8s.io_v1_role_container-object-storage-controller.yaml b/stable/cosi/templates/rbac.authorization.k8s.io_v1_role_container-object-storage-controller.yaml new file mode 100644 index 000000000..bf0a8af52 --- /dev/null +++ b/stable/cosi/templates/rbac.authorization.k8s.io_v1_role_container-object-storage-controller.yaml @@ -0,0 +1,28 @@ +apiVersion: rbac.authorization.k8s.io/v1 +kind: Role +metadata: + annotations: + api-approved.kubernetes.io: https://github.com/kubernetes/enhancements/tree/master/keps/sig-storage/1979-object-storage-support + objectstorage.k8s.io/authors: Kubernetes Authors + objectstorage.k8s.io/license: Apache V2 + objectstorage.k8s.io/support: https://github.com/kubernetes-sigs/container-object-storage-api + labels: + app.kubernetes.io/component: controller + app.kubernetes.io/managed-by: kustomize + app.kubernetes.io/name: container-object-storage-interface-controller + app.kubernetes.io/part-of: container-object-storage-interface + app.kubernetes.io/version: main + name: container-object-storage-controller + namespace: container-object-storage-system +rules: +- apiGroups: + - coordination.k8s.io + resources: + - leases + verbs: + - get + - watch + - list + - delete + - update + - create diff --git a/stable/cosi/templates/rbac.authorization.k8s.io_v1_rolebinding_container-object-storage-controller.yaml b/stable/cosi/templates/rbac.authorization.k8s.io_v1_rolebinding_container-object-storage-controller.yaml new file mode 100644 index 000000000..add76970d --- /dev/null +++ b/stable/cosi/templates/rbac.authorization.k8s.io_v1_rolebinding_container-object-storage-controller.yaml @@ -0,0 +1,24 @@ +apiVersion: rbac.authorization.k8s.io/v1 +kind: RoleBinding +metadata: + annotations: + api-approved.kubernetes.io: https://github.com/kubernetes/enhancements/tree/master/keps/sig-storage/1979-object-storage-support + objectstorage.k8s.io/authors: Kubernetes Authors + objectstorage.k8s.io/license: Apache V2 + objectstorage.k8s.io/support: https://github.com/kubernetes-sigs/container-object-storage-api + labels: + app.kubernetes.io/component: controller + app.kubernetes.io/managed-by: kustomize + app.kubernetes.io/name: container-object-storage-interface-controller + app.kubernetes.io/part-of: container-object-storage-interface + app.kubernetes.io/version: main + name: container-object-storage-controller + namespace: container-object-storage-system +roleRef: + apiGroup: rbac.authorization.k8s.io + kind: Role + name: container-object-storage-controller +subjects: +- kind: ServiceAccount + name: container-object-storage-controller-sa + namespace: container-object-storage-system diff --git a/stable/cosi/templates/v1_serviceaccount_container-object-storage-controller-sa.yaml b/stable/cosi/templates/v1_serviceaccount_container-object-storage-controller-sa.yaml new file mode 100644 index 000000000..5f9cf5802 --- /dev/null +++ b/stable/cosi/templates/v1_serviceaccount_container-object-storage-controller-sa.yaml @@ -0,0 +1,15 @@ +apiVersion: v1 +kind: ServiceAccount +metadata: + annotations: + api-approved.kubernetes.io: https://github.com/kubernetes/enhancements/tree/master/keps/sig-storage/1979-object-storage-support + objectstorage.k8s.io/authors: Kubernetes Authors + objectstorage.k8s.io/license: Apache V2 + objectstorage.k8s.io/support: https://github.com/kubernetes-sigs/container-object-storage-api + labels: + app.kubernetes.io/component: controller + app.kubernetes.io/managed-by: kustomize + app.kubernetes.io/name: container-object-storage-interface-controller + app.kubernetes.io/part-of: container-object-storage-interface + name: container-object-storage-controller-sa + namespace: container-object-storage-system diff --git a/stable/cosi/upgrade_operator.sh b/stable/cosi/upgrade_operator.sh new file mode 100755 index 000000000..a1ccfdef1 --- /dev/null +++ b/stable/cosi/upgrade_operator.sh @@ -0,0 +1,65 @@ +#!/usr/bin/env bash + +# This script upgrades the cosi chart by copying all the latest upstream helm files. +# +# It then applies all the needed mesosphere changes from the /patch folder. +# +# To upgrade, simply run: +# ./upgrade_operator.sh + +set -xeuo pipefail +shopt -s dotglob + +BASEDIR=$(dirname "$(realpath "$0")") +UPSTREAM_REPO=git@github.com:kubernetes-sigs/container-object-storage-interface.git +TAG=7ddc93baaa3f08c9c8990a17c7b958955d93c044 # Replace this with a real tag +KUSTOMIZATION_PATH=kustomization.yaml +CRDS_PATH=client/config/crd/ +CONTROLLER_PATH=controller +TMPDIR=$(mktemp -d) +STARTING_REV=$(git rev-parse HEAD) +export STARTING_REV +trap 'rollback' ERR + +rollback() { + set +x + echo "ERROR running upgrades. Rolling back." + cd "${BASEDIR}" + git reset --hard "${STARTING_REV}" + exit 1 +} + +cd "${TMPDIR}" || exit + +git init +git remote add origin -f ${UPSTREAM_REPO} +git config core.sparsecheckout true + +echo ${KUSTOMIZATION_PATH} > .git/info/sparse-checkout +echo ${CRDS_PATH} >> .git/info/sparse-checkout +echo ${CONTROLLER_PATH} >> .git/info/sparse-checkout + +git fetch origin ${TAG} +git checkout ${TAG} + +mkdir chart +kustomize build --output chart . +rm chart/v1_namespace_container-object-storage-system.yaml # No need to create a namespace explicitly, helm will take care of it. + +for f in chart/apiextensions.k8s.io_v1_customresourcedefinition*; do + rm -rf "${BASEDIR:?}"/crds/"${f}" + mv "$f" "${BASEDIR}"/crds +done +for f in chart/*; do + rm -rf "${BASEDIR:?}"/templates/"${f}" + cp -R "$f" "${BASEDIR}"/templates +done + +cd "${BASEDIR}" || exit + +# TODO(takirala): Add patching logic here (e.g. patch the priority class) + +git add . +git commit -am "chore: copy upstream manifests @ ${TAG}" + +echo "Done upgrading cosi!"