From a52b5213dd074dedb1b21ecc1a04e587819dcf37 Mon Sep 17 00:00:00 2001 From: Tyler Gu Date: Fri, 24 Jun 2022 12:32:51 -0500 Subject: [PATCH] doc: add doc for operator config --- README.md | 55 +- acto.py | 35 +- common.py | 20 +- data/cass-operator/config.json | 4 +- data/casskop-operator/candidates.yaml | 5 - .../cassandra-operator/Chart.yaml | 17 - .../cassandra-operator/OWNERS | 8 - .../crds/db.orange.com_cassandrabackups.yaml | 209 -- .../crds/db.orange.com_cassandraclusters.yaml | 2539 ----------------- .../crds/db.orange.com_cassandrarestores.yaml | 219 -- .../cassandra-operator/readme.md | 133 - .../cassandra-operator/templates/NOTES.txt | 5 - .../templates/_functions.tpl | 33 - .../templates/deployment.yaml | 73 - .../cassandra-operator/templates/role.yaml | 113 - .../templates/rolebinding.yaml | 37 - .../cassandra-operator/templates/service.yaml | 19 - .../templates/service_account.yaml | 21 - .../cassandra-operator/values.yaml | 48 - data/casskop-operator/cr.yaml | 37 - data/casskop-operator/init.yaml | 20 - .../config.json | 5 +- data/rabbitmq-operator/port.json | 4 +- data/zookeeper-operator/config.json | 4 +- 24 files changed, 64 insertions(+), 3599 deletions(-) delete mode 100644 data/casskop-operator/candidates.yaml delete mode 100644 data/casskop-operator/cassandra-operator/Chart.yaml delete mode 100644 data/casskop-operator/cassandra-operator/OWNERS delete mode 100644 data/casskop-operator/cassandra-operator/crds/db.orange.com_cassandrabackups.yaml delete mode 100644 data/casskop-operator/cassandra-operator/crds/db.orange.com_cassandraclusters.yaml delete mode 100644 data/casskop-operator/cassandra-operator/crds/db.orange.com_cassandrarestores.yaml delete mode 100644 data/casskop-operator/cassandra-operator/readme.md delete mode 100644 data/casskop-operator/cassandra-operator/templates/NOTES.txt delete mode 100644 data/casskop-operator/cassandra-operator/templates/_functions.tpl delete mode 100644 data/casskop-operator/cassandra-operator/templates/deployment.yaml delete mode 100644 data/casskop-operator/cassandra-operator/templates/role.yaml delete mode 100644 data/casskop-operator/cassandra-operator/templates/rolebinding.yaml delete mode 100644 data/casskop-operator/cassandra-operator/templates/service.yaml delete mode 100644 data/casskop-operator/cassandra-operator/templates/service_account.yaml delete mode 100644 data/casskop-operator/cassandra-operator/values.yaml delete mode 100644 data/casskop-operator/cr.yaml delete mode 100644 data/casskop-operator/init.yaml diff --git a/README.md b/README.md index 72ca364789..ea3e8f2371 100644 --- a/README.md +++ b/README.md @@ -15,29 +15,38 @@ To run the test: ``` python3 acto.py \ - --seed SEED, -s SEED seed CR file - --operator OPERATOR, -o OPERATOR - yaml file for deploying the operator with kubectl - --helm OPERATOR_CHART - Path of operator helm chart - --kustomize KUSTOMIZE - Path of folder with kustomize - --init INIT Path of init yaml file (deploy before operator) - --duration DURATION, -d DURATION - Number of hours to run - --preload-images [PRELOAD_IMAGES ...] - Docker images to preload into Kind cluster - --crd-name CRD_NAME Name of CRD to use, required if there are multiple CRDs - --helper-crd HELPER_CRD - generated CRD file that helps with the input generation - --custom-fields CUSTOM_FIELDS - Python source file containing a list of custom fields - --analysis-result ANALYSIS_RESULT - JSON file resulted from the code analysis - --context CONTEXT Cached context data - --num-workers NUM_WORKERS - Number of concurrent workers to run Acto with - --dryrun Only generate test cases without executing them + --config CONFIG, -c CONFIG + Operator port config path + --duration DURATION, -d DURATION + Number of hours to run + --preload-images [PRELOAD_IMAGES [PRELOAD_IMAGES ...]] + Docker images to preload into Kind cluster + --helper-crd HELPER_CRD + generated CRD file that helps with the input generation + --context CONTEXT Cached context data + --num-workers NUM_WORKERS + Number of concurrent workers to run Acto with + --dryrun Only generate test cases without executing them +``` + +## Operator config example +```json +{ + "deploy": { + "method": "YAML", // Three deploy methods [YAML HELM KUSTOMIZE] + "file": "data/rabbitmq-operator/operator.yaml", // the deployment file + "init": null // any yaml to deploy for deploying the operator itself + }, + "crd_name": null, // name of the CRD to test, optional if there is only one CRD + "custom_fields": "data.rabbitmq-operator.prune", // to guide the pruning + "seed_custom_resource": "data/rabbitmq-operator/cr.yaml", // the seed CR file + "analysis": { + "github_link": "https://github.com/rabbitmq/cluster-operator.git", // github link for the operator repo + "commit": "f2ab5cecca7fa4bbba62ba084bfa4ae1b25d15ff", // specific commit hash of the repo + "type": "RabbitmqCluster", // the root type of the CR + "package": "github.com/rabbitmq/cluster-operator/api/v1beta1" // package of the root type + } +} ``` ## Known Issues diff --git a/acto.py b/acto.py index b4eb00b9c2..7e37c9e446 100644 --- a/acto.py +++ b/acto.py @@ -308,8 +308,8 @@ def __init__(self, # first make sure images are present locally for image in self.context['preload_images']: subprocess.run(['docker', 'pull', image]) - subprocess.run(['docker', 'image', 'save', '-o', - self.images_archive] + list(self.context['preload_images'])) + subprocess.run(['docker', 'image', 'save', '-o', self.images_archive] + + list(self.context['preload_images'])) # Generate test cases self.test_plan = self.input_model.generate_test_plan() @@ -339,12 +339,16 @@ def __learn(self, context_file, helper_crd): process_crd(self.context, apiclient, 'learn', self.crd_name, helper_crd) kind_delete_cluster('learn') - with tempfile.TemporaryDirectory() as project_src: - subprocess.run(['git', 'clone', self.operator_config.github_link, project_src]) - subprocess.run(['git', '-C', project_src, 'checkout', self.operator_config.commit]) - self.context['analysis_result'] = analyze(project_src, - self.operator_config.seedType.type, - self.operator_config.seedType.package) + if self.operator_config.analysis != None: + with tempfile.TemporaryDirectory() as project_src: + subprocess.run( + ['git', 'clone', self.operator_config.analysis.github_link, project_src]) + subprocess.run([ + 'git', '-C', project_src, 'checkout', self.operator_config.analysis.commit + ]) + self.context['analysis_result'] = analyze(project_src, + self.operator_config.analysis.type, + self.operator_config.analysis.package) with open(context_file, 'w') as context_fout: json.dump(self.context, context_fout, cls=ActoEncoder) @@ -402,21 +406,6 @@ def thread_excepthook(args): parser = argparse.ArgumentParser( description='Automatic, Continuous Testing for k8s/openshift Operators') parser.add_argument('--config', '-c', dest='config', help='Operator port config path') - deploy_method = parser.add_mutually_exclusive_group(required=True) - deploy_method.add_argument('--operator', - '-o', - dest='operator', - required=False, - help="yaml file for deploying the\ - operator with kubectl") - deploy_method.add_argument('--helm', - dest='operator_chart', - required=False, - help='Path of operator helm chart') - deploy_method.add_argument('--kustomize', - dest='kustomize', - required=False, - help='Path of folder with kustomize') parser.add_argument('--duration', '-d', dest='duration', diff --git a/common.py b/common.py index b2b323b22e..eddf5929bb 100644 --- a/common.py +++ b/common.py @@ -22,27 +22,26 @@ def __init__(self, method: str, file: str, init: str) -> None: self.init = init -class SeedType: +class AnalysisConfig: - def __init__(self, type: str, package: str) -> None: + def __init__(self, github_link: str, commit: str, type: str, package: str) -> None: + self.github_link = github_link + self.commit = commit self.type = type self.package = package class OperatorConfig: - def __init__(self, github_link: str, commit: str, deploy: DeployConfig, crd_name: str, - custom_fields: str, context: str, seed_custom_resource: str, source_path: str, - seedType: SeedType) -> None: - self.github_link = github_link - self.commit = commit + def __init__(self, deploy: DeployConfig, crd_name: str, custom_fields: str, context: str, + seed_custom_resource: str, source_path: str, analysis: AnalysisConfig) -> None: self.deploy = deploy self.crd_name = crd_name self.custom_fields = custom_fields self.context = context self.seed_custom_resource = seed_custom_resource self.source_path = source_path - self.seedType = seedType + self.analysis = analysis class Diff: @@ -348,7 +347,10 @@ def kind_delete_cluster(name: str): subprocess.run(cmd) -def kubectl(args: list, cluster_name: str, capture_output=False, text=False) -> subprocess.CompletedProcess: +def kubectl(args: list, + cluster_name: str, + capture_output=False, + text=False) -> subprocess.CompletedProcess: cmd = ['kubectl'] cmd.extend(args) diff --git a/data/cass-operator/config.json b/data/cass-operator/config.json index b1285a202d..a4346be272 100644 --- a/data/cass-operator/config.json +++ b/data/cass-operator/config.json @@ -1,6 +1,4 @@ { - "github_link": "https://github.com/k8ssandra/cass-operator.git", - "commit": "241e71cdd32bd9f8a7e5c00d5427cdcaf9f55497", "deploy": { "method": "KUSTOMIZE", "file": "github.com/k8ssandra/cass-operator/config/deployments/cluster?ref=v1.10.3", @@ -10,6 +8,8 @@ "custom_fields": "data.cass-operator.prune", "seed_custom_resource": "data/cass-operator/cr.yaml", "seedType": { + "github_link": "https://github.com/k8ssandra/cass-operator.git", + "commit": "241e71cdd32bd9f8a7e5c00d5427cdcaf9f55497", "type": "CassandraDatacenter", "package": "github.com/k8ssandra/cass-operator/apis/cassandra/v1beta1" } diff --git a/data/casskop-operator/candidates.yaml b/data/casskop-operator/candidates.yaml deleted file mode 100644 index f27282d809..0000000000 --- a/data/casskop-operator/candidates.yaml +++ /dev/null @@ -1,5 +0,0 @@ -spec: - dataCapacity: - candidates: - - "200Mi" - - "400Mi" \ No newline at end of file diff --git a/data/casskop-operator/cassandra-operator/Chart.yaml b/data/casskop-operator/cassandra-operator/Chart.yaml deleted file mode 100644 index 17b83fbb15..0000000000 --- a/data/casskop-operator/cassandra-operator/Chart.yaml +++ /dev/null @@ -1,17 +0,0 @@ -apiVersion: v1 -description: A Helm chart for CassKop - the Orange Cassandra Kubernetes operator -name: cassandra-operator -home: https://github.com/Orange-OpenSource/casskop -sources: - - https://github.com/Orange-OpenSource/casskop -version: 2.1.0 -appVersion: 2.1.0-release -maintainers: - - name: cscetbon - email: cscetbon@gmail.com - - name: fdehay - email: franck.dehay@orange.com -keywords: -- operator -- cassandra -- casskop diff --git a/data/casskop-operator/cassandra-operator/OWNERS b/data/casskop-operator/cassandra-operator/OWNERS deleted file mode 100644 index 9a8e52c164..0000000000 --- a/data/casskop-operator/cassandra-operator/OWNERS +++ /dev/null @@ -1,8 +0,0 @@ -approvers: -- allamand -- jal06 -- Orange-csetbon -reviewers: -- allamand -- jal06 -- Orange-csetbon diff --git a/data/casskop-operator/cassandra-operator/crds/db.orange.com_cassandrabackups.yaml b/data/casskop-operator/cassandra-operator/crds/db.orange.com_cassandrabackups.yaml deleted file mode 100644 index 3d839f1450..0000000000 --- a/data/casskop-operator/cassandra-operator/crds/db.orange.com_cassandrabackups.yaml +++ /dev/null @@ -1,209 +0,0 @@ -apiVersion: apiextensions.k8s.io/v1 -kind: CustomResourceDefinition -metadata: - name: cassandrabackups.db.orange.com -spec: - group: db.orange.com - names: - kind: CassandraBackup - listKind: CassandraBackupList - plural: cassandrabackups - singular: cassandrabackup - scope: Namespaced - versions: - - name: v1alpha1 - schema: - openAPIV3Schema: - description: Defines a backup operation and its details - 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: - bandwidth: - description: Specify the bandwidth to not exceed when uploading files to the cloud. Format supported is \d+[KMG] case insensitive. You can use values like 10M (meaning 10MB), 1024, 1024K, 2G, etc... - type: string - cassandraCluster: - description: Name of the CassandraCluster to backup - type: string - concurrentConnections: - description: Maximum number of threads used to download files from the cloud. Defaults to 10 - format: int32 - type: integer - datacenter: - description: Cassandra DC name to back up, used to find the cassandra nodes in the CassandraCluster - type: string - duration: - description: Specify a duration the backup should try to last. See https://golang.org/pkg/time/#ParseDuration for an exhaustive list of the supported units. You can use values like .25h, 15m, 900s all meaning 15 minutes - type: string - entities: - description: Database entities to backup, it might be either only keyspaces or only tables prefixed by their respective keyspace, e.g. 'k1,k2' if one wants to backup whole keyspaces or 'ks1.t1,ks2.t2' if one wants to restore specific tables. These formats are mutually exclusive so 'k1,k2.t2' is invalid. An empty field will backup all keyspaces - type: string - schedule: - description: Specify a schedule to assigned to the backup. The schedule doesn't enforce anything so if you schedule multiple backups around the same time they would conflict. See https://godoc.org/github.com/robfig/cron for more information regarding the supported formats - type: string - secret: - description: Name of Secret to use when accessing cloud storage providers - type: string - snapshotTag: - description: name of snapshot to make so this snapshot will be uploaded to storage location. If not specified, the name of snapshot will be automatically generated and it will have name 'autosnap-milliseconds-since-epoch' - type: string - storageLocation: - description: URI for the backup target location e.g. s3 bucket, filepath - type: string - required: - - cassandraCluster - - snapshotTag - - storageLocation - type: object - status: - properties: - condition: - description: BackRestCondition describes the observed state of a Restore at a certain point - properties: - failureCause: - items: - properties: - message: - description: message explaining the error - type: string - source: - description: hostame of a node where this error has occurred - type: string - type: object - type: array - lastTransitionTime: - type: string - type: - type: string - required: - - type - type: object - coordinatorMember: - description: Name of the pod the restore operation is executed on - type: string - id: - description: unique identifier of an operation, a random id is assigned to each operation after a request is submitted, from caller's perspective, an id is sent back as a response to his request so he can further query state of that operation, referencing id, by operations/{id} endpoint - type: string - progress: - description: Progress is a percentage, 100% means the operation is completed, either successfully or with errors - type: string - timeCompleted: - type: string - timeCreated: - type: string - timeStarted: - type: string - type: object - required: - - spec - type: object - served: true - storage: false - - name: v2 - schema: - openAPIV3Schema: - description: CassandraBackup is the Schema for the cassandrabackups API - type: object - required: - - spec - 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: - type: object - required: - - cassandraCluster - - snapshotTag - - storageLocation - properties: - bandwidth: - description: Specify the bandwidth to not exceed when uploading files to the cloud. Format supported is \d+[KMG] case insensitive. You can use values like 10M (meaning 10MB), 1024, 1024K, 2G, etc... - type: string - cassandraCluster: - description: Name of the CassandraCluster to backup - type: string - concurrentConnections: - description: Maximum number of threads used to download files from the cloud. Defaults to 10 - type: integer - format: int32 - datacenter: - description: Cassandra DC name to back up, used to find the cassandra nodes in the CassandraCluster - type: string - duration: - description: Specify a duration the backup should try to last. See https://golang.org/pkg/time/#ParseDuration for an exhaustive list of the supported units. You can use values like .25h, 15m, 900s all meaning 15 minutes - type: string - entities: - description: Database entities to backup, it might be either only keyspaces or only tables prefixed by their respective keyspace, e.g. 'k1,k2' if one wants to backup whole keyspaces or 'ks1.t1,ks2.t2' if one wants to restore specific tables. These formats are mutually exclusive so 'k1,k2.t2' is invalid. An empty field will backup all keyspaces - type: string - schedule: - description: Specify a schedule to assigned to the backup. The schedule doesn't enforce anything so if you schedule multiple backups around the same time they would conflict. See https://godoc.org/github.com/robfig/cron for more information regarding the supported formats - type: string - secret: - description: Name of Secret to use when accessing cloud storage providers - type: string - snapshotTag: - description: name of snapshot to make so this snapshot will be uploaded to storage location. If not specified, the name of snapshot will be automatically generated and it will have name 'autosnap-milliseconds-since-epoch' - type: string - storageLocation: - description: URI for the backup target location e.g. s3 bucket, filepath - type: string - status: - type: object - properties: - condition: - description: BackRestCondition describes the observed state of a Restore at a certain point - type: object - required: - - type - properties: - failureCause: - type: array - items: - type: object - properties: - message: - description: message explaining the error - type: string - source: - description: hostame of a node where this error has occurred - type: string - lastTransitionTime: - type: string - type: - type: string - coordinatorMember: - description: Name of the pod the restore operation is executed on - type: string - id: - description: unique identifier of an operation, a random id is assigned to each operation after a request is submitted, from caller's perspective, an id is sent back as a response to his request so he can further query state of that operation, referencing id, by operations/{id} endpoint - type: string - progress: - description: Progress is a percentage, 100% means the operation is completed, either successfully or with errors - type: string - timeCompleted: - type: string - timeCreated: - type: string - timeStarted: - type: string - served: true - storage: true -status: - acceptedNames: - kind: "" - plural: "" - conditions: [] - storedVersions: [] diff --git a/data/casskop-operator/cassandra-operator/crds/db.orange.com_cassandraclusters.yaml b/data/casskop-operator/cassandra-operator/crds/db.orange.com_cassandraclusters.yaml deleted file mode 100644 index 14f300a2d0..0000000000 --- a/data/casskop-operator/cassandra-operator/crds/db.orange.com_cassandraclusters.yaml +++ /dev/null @@ -1,2539 +0,0 @@ -apiVersion: apiextensions.k8s.io/v1 -kind: CustomResourceDefinition -metadata: - name: cassandraclusters.db.orange.com -spec: - group: db.orange.com - names: - kind: CassandraCluster - listKind: CassandraClusterList - plural: cassandraclusters - singular: cassandracluster - scope: Namespaced - versions: - - name: v1alpha1 - schema: - openAPIV3Schema: - description: CassandraCluster is the Schema for the cassandraclusters API - 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: - autoPilot: - description: AutoPilot defines if the Operator can fly alone or if we need human action to trigger Actions on specific Cassandra nodes If autoPilot=true, the operator will set labels pod-operation-status=To-Do on Pods which allows him to automatically triggers Action If autoPilot=false, the operator will set labels pod-operation-status=Manual on Pods which won't automatically triggers Action - type: boolean - autoUpdateSeedList: - description: AutoUpdateSeedList defines if the Operator automatically update the SeedList according to new cluster CRD topology by default a boolean is false - type: boolean - backRestSidecar: - description: BackRestSidecar defines details about cassandra-sidecar to load along with each C* pod - properties: - image: - description: Image of backup/restore sidecar - type: string - imagePullPolicy: - description: ImagePullPolicy define the pull policy for backrest sidecar docker image - type: string - resources: - description: 'Kubernetes object : https://godoc.org/k8s.io/api/core/v1#ResourceRequirements' - properties: - limits: - additionalProperties: - anyOf: - - type: integer - - type: string - pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ - x-kubernetes-int-or-string: true - description: 'Limits describes the maximum amount of compute resources allowed. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/' - type: object - requests: - additionalProperties: - anyOf: - - type: integer - - type: string - pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ - x-kubernetes-int-or-string: true - description: 'Requests describes the minimum amount of compute resources required. If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/' - type: object - type: object - type: object - bootstrapImage: - description: Image used for bootstrapping cluster (use the form base:version) - type: string - cassandraImage: - description: Image + version to use for Cassandra - type: string - configMapName: - description: Name of the ConfigMap for Cassandra configuration (cassandra.yaml) If this is empty, operator will uses default cassandra.yaml from the baseImage If this is not empty, operator will uses the cassandra.yaml from the Configmap instead - type: string - dataCapacity: - description: Define the Capacity for Persistent Volume Claims in the local storage - pattern: ^([+-]?[0-9.]+)([eEinumkKMGTP]*[-+]?[0-9]*)$ - type: string - dataStorageClass: - description: Define StorageClass for Persistent Volume Claims in the local storage. - type: string - debug: - description: Debug is used to surcharge Cassandra pod command to not directly start cassandra but starts an infinite wait to allow user to connect a bash into the pod to make some diagnoses. - type: boolean - deletePVC: - description: DeletePVC defines if the PVC must be deleted when the cluster is deleted it is false by default - type: boolean - fsGroup: - default: 1 - description: FSGroup defines the GID owning volumes in the Cassandra image - format: int64 - minimum: 1 - type: integer - gcStdout: - description: 'GCStdout set the parameter CASSANDRA_GC_STDOUT which configure the JVM -Xloggc: true by default' - type: boolean - hardAntiAffinity: - description: HardAntiAffinity defines if the PodAntiAffinity of the statefulset has to be hard (it's soft by default) - type: boolean - imageJolokiaSecret: - description: JMX Secret if Set is used to set JMX_USER and JMX_PASSWORD - properties: - name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' - type: string - type: object - imagePullSecret: - description: Name of the secret to uses to authenticate on Docker registries If this is empty, operator do nothing If this is not empty, propagate the imagePullSecrets to the statefulsets - properties: - name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' - type: string - type: object - imagepullpolicy: - description: ImagePullPolicy define the pull policy for C* docker image - type: string - initContainerCmd: - description: Command to execute in the initContainer in the targeted image - type: string - initContainerImage: - description: Image used in the initContainer (use the form base:version) - type: string - livenessFailureThreshold: - description: 'LivenessFailureThreshold defines failure threshold for the liveness probe of the main cassandra container : https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/#configure-probes' - format: int32 - type: integer - livenessHealthCheckPeriod: - description: 'LivenessHealthCheckPeriod defines health check period for the liveness probe of the main cassandra container : https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/#configure-probes' - format: int32 - type: integer - livenessHealthCheckTimeout: - description: 'LivenessHealthCheckTimeout defines health check timeout for the liveness probe of the main cassandra container : https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/#configure-probes' - format: int32 - type: integer - livenessInitialDelaySeconds: - description: 'LivenessInitialDelaySeconds defines initial delay for the liveness probe of the main cassandra container : https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/#configure-probes' - format: int32 - type: integer - livenessSuccessThreshold: - description: 'LivenessSuccessThreshold defines success threshold for the liveness probe of the main cassandra container : https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/#configure-probes' - format: int32 - type: integer - maxPodUnavailable: - format: int32 - type: integer - noCheckStsAreEqual: - type: boolean - nodesPerRacks: - description: 'Number of nodes to deploy for a Cassandra deployment in each Racks. Default: 1. If NodesPerRacks = 2 and there is 3 racks, the cluster will have 6 Cassandra Nodes' - format: int32 - type: integer - pod: - description: PodPolicy defines the policy for pods owned by CassKop operator. - properties: - annotations: - additionalProperties: - type: string - description: Annotations specifies the annotations to attach to headless service the CassKop operator creates - type: object - tolerations: - description: Tolerations specifies the tolerations to attach to the pods the CassKop operator creates - items: - description: The pod this Toleration is attached to tolerates any taint that matches the triple using the matching operator . - properties: - effect: - description: Effect indicates the taint effect to match. Empty means match all taint effects. When specified, allowed values are NoSchedule, PreferNoSchedule and NoExecute. - type: string - key: - description: Key is the taint key that the toleration applies to. Empty means match all taint keys. If the key is empty, operator must be Exists; this combination means to match all values and all keys. - type: string - operator: - description: Operator represents a key's relationship to the value. Valid operators are Exists and Equal. Defaults to Equal. Exists is equivalent to wildcard for value, so that a pod can tolerate all taints of a particular category. - type: string - tolerationSeconds: - description: TolerationSeconds represents the period of time the toleration (which must be of effect NoExecute, otherwise this field is ignored) tolerates the taint. By default, it is not set, which means tolerate the taint forever (do not evict). Zero and negative values will be treated as 0 (evict immediately) by the system. - format: int64 - type: integer - value: - description: Value is the taint value the toleration matches to. If the operator is Exists, the value should be empty, otherwise just a regular string. - type: string - type: object - type: array - type: object - readOnlyRootFilesystem: - description: Make the pod as Readonly - type: boolean - readinessFailureThreshold: - description: 'ReadinessFailureThreshold defines failure threshold for the readiness probe of the main cassandra container : https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/#configure-probes' - format: int32 - type: integer - readinessHealthCheckPeriod: - description: 'ReadinessHealthCheckPeriod defines health check period for the readiness probe of the main cassandra container : https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/#configure-probes' - format: int32 - type: integer - readinessHealthCheckTimeout: - description: 'ReadinessHealthCheckTimeout defines health check timeout for the readiness probe of the main cassandra container : https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/#configure-probes' - format: int32 - type: integer - readinessInitialDelaySeconds: - description: 'ReadinessInitialDelaySeconds defines initial delay for the readiness probe of the main cassandra container : https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/#configure-probes' - format: int32 - type: integer - readinessSuccessThreshold: - description: 'ReadinessSuccessThreshold defines success threshold for the readiness probe of the main cassandra container : https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/#configure-probes' - format: int32 - type: integer - resources: - description: ResourceRequirements describes the compute resource requirements. - properties: - limits: - additionalProperties: - anyOf: - - type: integer - - type: string - pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ - x-kubernetes-int-or-string: true - description: 'Limits describes the maximum amount of compute resources allowed. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/' - type: object - requests: - additionalProperties: - anyOf: - - type: integer - - type: string - pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ - x-kubernetes-int-or-string: true - description: 'Requests describes the minimum amount of compute resources required. If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/' - type: object - type: object - restartCountBeforePodDeletion: - description: RestartCountBeforePodDeletion defines the number of restart allowed for a cassandra container allowed before deleting the pod to force its restart from scratch. if set to 0 or omit, no action will be performed based on restart count. - format: int32 - type: integer - runAsUser: - default: 999 - description: RunAsUser define the id of the user to run in the Cassandra image - format: int64 - minimum: 1 - type: integer - service: - description: ServicePolicy defines the policy for headless service owned by CassKop operator. - properties: - annotations: - additionalProperties: - type: string - description: Annotations specifies the annotations to attach to headless service the CassKop operator creates - type: object - type: object - serviceAccountName: - type: string - shareProcessNamespace: - description: 'When process namespace sharing is enabled, processes in a container are visible to all other containers in that pod. https://kubernetes.io/docs/tasks/configure-pod-container/share-process-namespace/ Optional: Default to false.' - type: boolean - sidecarConfigs: - description: SidecarsConfig defines additional sidecar configurations - items: - description: A single application container that you want to run within a pod. - properties: - args: - description: 'Arguments to the entrypoint. The docker image''s CMD is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container''s environment. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell' - items: - type: string - type: array - command: - description: 'Entrypoint array. Not executed within a shell. The docker image''s ENTRYPOINT is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container''s environment. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell' - items: - type: string - type: array - env: - description: List of environment variables to set in the container. Cannot be updated. - items: - description: EnvVar represents an environment variable present in a Container. - properties: - name: - description: Name of the environment variable. Must be a C_IDENTIFIER. - type: string - value: - description: 'Variable references $(VAR_NAME) are expanded using the previous defined environment variables in the container and any service environment variables. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. Defaults to "".' - type: string - valueFrom: - description: Source for the environment variable's value. Cannot be used if value is not empty. - properties: - configMapKeyRef: - description: Selects a key of a ConfigMap. - properties: - key: - description: The key to select. - type: string - name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' - type: string - optional: - description: Specify whether the ConfigMap or its key must be defined - type: boolean - required: - - key - type: object - fieldRef: - description: 'Selects a field of the pod: supports metadata.name, metadata.namespace, metadata.labels, metadata.annotations, spec.nodeName, spec.serviceAccountName, status.hostIP, status.podIP, status.podIPs.' - properties: - apiVersion: - description: Version of the schema the FieldPath is written in terms of, defaults to "v1". - type: string - fieldPath: - description: Path of the field to select in the specified API version. - type: string - required: - - fieldPath - type: object - resourceFieldRef: - description: 'Selects a resource of the container: only resources limits and requests (limits.cpu, limits.memory, limits.ephemeral-storage, requests.cpu, requests.memory and requests.ephemeral-storage) are currently supported.' - properties: - containerName: - description: 'Container name: required for volumes, optional for env vars' - type: string - divisor: - anyOf: - - type: integer - - type: string - description: Specifies the output format of the exposed resources, defaults to "1" - pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ - x-kubernetes-int-or-string: true - resource: - description: 'Required: resource to select' - type: string - required: - - resource - type: object - secretKeyRef: - description: Selects a key of a secret in the pod's namespace - properties: - key: - description: The key of the secret to select from. Must be a valid secret key. - type: string - name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' - type: string - optional: - description: Specify whether the Secret or its key must be defined - type: boolean - required: - - key - type: object - type: object - required: - - name - type: object - type: array - envFrom: - description: List of sources to populate environment variables in the container. The keys defined within a source must be a C_IDENTIFIER. All invalid keys will be reported as an event when the container is starting. When a key exists in multiple sources, the value associated with the last source will take precedence. Values defined by an Env with a duplicate key will take precedence. Cannot be updated. - items: - description: EnvFromSource represents the source of a set of ConfigMaps - properties: - configMapRef: - description: The ConfigMap to select from - properties: - name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' - type: string - optional: - description: Specify whether the ConfigMap must be defined - type: boolean - type: object - prefix: - description: An optional identifier to prepend to each key in the ConfigMap. Must be a C_IDENTIFIER. - type: string - secretRef: - description: The Secret to select from - properties: - name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' - type: string - optional: - description: Specify whether the Secret must be defined - type: boolean - type: object - type: object - type: array - image: - description: 'Docker image name. More info: https://kubernetes.io/docs/concepts/containers/images This field is optional to allow higher level config management to default or override container images in workload controllers like Deployments and StatefulSets.' - type: string - imagePullPolicy: - description: 'Image pull policy. One of Always, Never, IfNotPresent. Defaults to Always if :latest tag is specified, or IfNotPresent otherwise. Cannot be updated. More info: https://kubernetes.io/docs/concepts/containers/images#updating-images' - type: string - lifecycle: - description: Actions that the management system should take in response to container lifecycle events. Cannot be updated. - properties: - postStart: - description: 'PostStart is called immediately after a container is created. If the handler fails, the container is terminated and restarted according to its restart policy. Other management of the container blocks until the hook completes. More info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks' - properties: - exec: - description: One and only one of the following should be specified. Exec specifies the action to take. - properties: - command: - description: Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy. - items: - type: string - type: array - type: object - httpGet: - description: HTTPGet specifies the http request to perform. - properties: - host: - description: Host name to connect to, defaults to the pod IP. You probably want to set "Host" in httpHeaders instead. - type: string - httpHeaders: - description: Custom headers to set in the request. HTTP allows repeated headers. - items: - description: HTTPHeader describes a custom header to be used in HTTP probes - properties: - name: - description: The header field name - type: string - value: - description: The header field value - type: string - required: - - name - - value - type: object - type: array - path: - description: Path to access on the HTTP server. - type: string - port: - anyOf: - - type: integer - - type: string - description: Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME. - x-kubernetes-int-or-string: true - scheme: - description: Scheme to use for connecting to the host. Defaults to HTTP. - type: string - required: - - port - type: object - tcpSocket: - description: 'TCPSocket specifies an action involving a TCP port. TCP hooks not yet supported TODO: implement a realistic TCP lifecycle hook' - properties: - host: - description: 'Optional: Host name to connect to, defaults to the pod IP.' - type: string - port: - anyOf: - - type: integer - - type: string - description: Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME. - x-kubernetes-int-or-string: true - required: - - port - type: object - type: object - preStop: - description: 'PreStop is called immediately before a container is terminated due to an API request or management event such as liveness/startup probe failure, preemption, resource contention, etc. The handler is not called if the container crashes or exits. The reason for termination is passed to the handler. The Pod''s termination grace period countdown begins before the PreStop hooked is executed. Regardless of the outcome of the handler, the container will eventually terminate within the Pod''s termination grace period. Other management of the container blocks until the hook completes or until the termination grace period is reached. More info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks' - properties: - exec: - description: One and only one of the following should be specified. Exec specifies the action to take. - properties: - command: - description: Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy. - items: - type: string - type: array - type: object - httpGet: - description: HTTPGet specifies the http request to perform. - properties: - host: - description: Host name to connect to, defaults to the pod IP. You probably want to set "Host" in httpHeaders instead. - type: string - httpHeaders: - description: Custom headers to set in the request. HTTP allows repeated headers. - items: - description: HTTPHeader describes a custom header to be used in HTTP probes - properties: - name: - description: The header field name - type: string - value: - description: The header field value - type: string - required: - - name - - value - type: object - type: array - path: - description: Path to access on the HTTP server. - type: string - port: - anyOf: - - type: integer - - type: string - description: Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME. - x-kubernetes-int-or-string: true - scheme: - description: Scheme to use for connecting to the host. Defaults to HTTP. - type: string - required: - - port - type: object - tcpSocket: - description: 'TCPSocket specifies an action involving a TCP port. TCP hooks not yet supported TODO: implement a realistic TCP lifecycle hook' - properties: - host: - description: 'Optional: Host name to connect to, defaults to the pod IP.' - type: string - port: - anyOf: - - type: integer - - type: string - description: Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME. - x-kubernetes-int-or-string: true - required: - - port - type: object - type: object - type: object - livenessProbe: - description: 'Periodic probe of container liveness. Container will be restarted if the probe fails. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' - properties: - exec: - description: One and only one of the following should be specified. Exec specifies the action to take. - properties: - command: - description: Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy. - items: - type: string - type: array - type: object - failureThreshold: - description: Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1. - format: int32 - type: integer - httpGet: - description: HTTPGet specifies the http request to perform. - properties: - host: - description: Host name to connect to, defaults to the pod IP. You probably want to set "Host" in httpHeaders instead. - type: string - httpHeaders: - description: Custom headers to set in the request. HTTP allows repeated headers. - items: - description: HTTPHeader describes a custom header to be used in HTTP probes - properties: - name: - description: The header field name - type: string - value: - description: The header field value - type: string - required: - - name - - value - type: object - type: array - path: - description: Path to access on the HTTP server. - type: string - port: - anyOf: - - type: integer - - type: string - description: Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME. - x-kubernetes-int-or-string: true - scheme: - description: Scheme to use for connecting to the host. Defaults to HTTP. - type: string - required: - - port - type: object - initialDelaySeconds: - description: 'Number of seconds after the container has started before liveness probes are initiated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' - format: int32 - type: integer - periodSeconds: - description: How often (in seconds) to perform the probe. Default to 10 seconds. Minimum value is 1. - format: int32 - type: integer - successThreshold: - description: Minimum consecutive successes for the probe to be considered successful after having failed. Defaults to 1. Must be 1 for liveness and startup. Minimum value is 1. - format: int32 - type: integer - tcpSocket: - description: 'TCPSocket specifies an action involving a TCP port. TCP hooks not yet supported TODO: implement a realistic TCP lifecycle hook' - properties: - host: - description: 'Optional: Host name to connect to, defaults to the pod IP.' - type: string - port: - anyOf: - - type: integer - - type: string - description: Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME. - x-kubernetes-int-or-string: true - required: - - port - type: object - timeoutSeconds: - description: 'Number of seconds after which the probe times out. Defaults to 1 second. Minimum value is 1. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' - format: int32 - type: integer - type: object - name: - description: Name of the container specified as a DNS_LABEL. Each container in a pod must have a unique name (DNS_LABEL). Cannot be updated. - type: string - ports: - description: List of ports to expose from the container. Exposing a port here gives the system additional information about the network connections a container uses, but is primarily informational. Not specifying a port here DOES NOT prevent that port from being exposed. Any port which is listening on the default "0.0.0.0" address inside a container will be accessible from the network. Cannot be updated. - items: - description: ContainerPort represents a network port in a single container. - properties: - containerPort: - description: Number of port to expose on the pod's IP address. This must be a valid port number, 0 < x < 65536. - format: int32 - type: integer - hostIP: - description: What host IP to bind the external port to. - type: string - hostPort: - description: Number of port to expose on the host. If specified, this must be a valid port number, 0 < x < 65536. If HostNetwork is specified, this must match ContainerPort. Most containers do not need this. - format: int32 - type: integer - name: - description: If specified, this must be an IANA_SVC_NAME and unique within the pod. Each named port in a pod must have a unique name. Name for the port that can be referred to by services. - type: string - protocol: - description: Protocol for port. Must be UDP, TCP, or SCTP. Defaults to "TCP". - type: string - required: - - containerPort - type: object - type: array - x-kubernetes-list-map-keys: - - containerPort - x-kubernetes-list-type: map - readinessProbe: - description: 'Periodic probe of container service readiness. Container will be removed from service endpoints if the probe fails. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' - properties: - exec: - description: One and only one of the following should be specified. Exec specifies the action to take. - properties: - command: - description: Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy. - items: - type: string - type: array - type: object - failureThreshold: - description: Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1. - format: int32 - type: integer - httpGet: - description: HTTPGet specifies the http request to perform. - properties: - host: - description: Host name to connect to, defaults to the pod IP. You probably want to set "Host" in httpHeaders instead. - type: string - httpHeaders: - description: Custom headers to set in the request. HTTP allows repeated headers. - items: - description: HTTPHeader describes a custom header to be used in HTTP probes - properties: - name: - description: The header field name - type: string - value: - description: The header field value - type: string - required: - - name - - value - type: object - type: array - path: - description: Path to access on the HTTP server. - type: string - port: - anyOf: - - type: integer - - type: string - description: Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME. - x-kubernetes-int-or-string: true - scheme: - description: Scheme to use for connecting to the host. Defaults to HTTP. - type: string - required: - - port - type: object - initialDelaySeconds: - description: 'Number of seconds after the container has started before liveness probes are initiated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' - format: int32 - type: integer - periodSeconds: - description: How often (in seconds) to perform the probe. Default to 10 seconds. Minimum value is 1. - format: int32 - type: integer - successThreshold: - description: Minimum consecutive successes for the probe to be considered successful after having failed. Defaults to 1. Must be 1 for liveness and startup. Minimum value is 1. - format: int32 - type: integer - tcpSocket: - description: 'TCPSocket specifies an action involving a TCP port. TCP hooks not yet supported TODO: implement a realistic TCP lifecycle hook' - properties: - host: - description: 'Optional: Host name to connect to, defaults to the pod IP.' - type: string - port: - anyOf: - - type: integer - - type: string - description: Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME. - x-kubernetes-int-or-string: true - required: - - port - type: object - timeoutSeconds: - description: 'Number of seconds after which the probe times out. Defaults to 1 second. Minimum value is 1. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' - format: int32 - type: integer - type: object - resources: - description: 'Compute Resources required by this container. Cannot be updated. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/' - properties: - limits: - additionalProperties: - anyOf: - - type: integer - - type: string - pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ - x-kubernetes-int-or-string: true - description: 'Limits describes the maximum amount of compute resources allowed. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/' - type: object - requests: - additionalProperties: - anyOf: - - type: integer - - type: string - pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ - x-kubernetes-int-or-string: true - description: 'Requests describes the minimum amount of compute resources required. If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/' - type: object - type: object - securityContext: - description: 'Security options the pod should run with. More info: https://kubernetes.io/docs/concepts/policy/security-context/ More info: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/' - properties: - allowPrivilegeEscalation: - description: 'AllowPrivilegeEscalation controls whether a process can gain more privileges than its parent process. This bool directly controls if the no_new_privs flag will be set on the container process. AllowPrivilegeEscalation is true always when the container is: 1) run as Privileged 2) has CAP_SYS_ADMIN' - type: boolean - capabilities: - description: The capabilities to add/drop when running containers. Defaults to the default set of capabilities granted by the container runtime. - properties: - add: - description: Added capabilities - items: - description: Capability represent POSIX capabilities type - type: string - type: array - drop: - description: Removed capabilities - items: - description: Capability represent POSIX capabilities type - type: string - type: array - type: object - privileged: - description: Run container in privileged mode. Processes in privileged containers are essentially equivalent to root on the host. Defaults to false. - type: boolean - procMount: - description: procMount denotes the type of proc mount to use for the containers. The default is DefaultProcMount which uses the container runtime defaults for readonly paths and masked paths. This requires the ProcMountType feature flag to be enabled. - type: string - readOnlyRootFilesystem: - description: Whether this container has a read-only root filesystem. Default is false. - type: boolean - runAsGroup: - description: The GID to run the entrypoint of the container process. Uses runtime default if unset. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. - format: int64 - type: integer - runAsNonRoot: - description: Indicates that the container must run as a non-root user. If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does. If unset or false, no such validation will be performed. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. - type: boolean - runAsUser: - description: The UID to run the entrypoint of the container process. Defaults to user specified in image metadata if unspecified. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. - format: int64 - type: integer - seLinuxOptions: - description: The SELinux context to be applied to the container. If unspecified, the container runtime will allocate a random SELinux context for each container. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. - properties: - level: - description: Level is SELinux level label that applies to the container. - type: string - role: - description: Role is a SELinux role label that applies to the container. - type: string - type: - description: Type is a SELinux type label that applies to the container. - type: string - user: - description: User is a SELinux user label that applies to the container. - type: string - type: object - windowsOptions: - description: The Windows specific settings applied to all containers. If unspecified, the options from the PodSecurityContext will be used. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. - properties: - gmsaCredentialSpec: - description: GMSACredentialSpec is where the GMSA admission webhook (https://github.com/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field. - type: string - gmsaCredentialSpecName: - description: GMSACredentialSpecName is the name of the GMSA credential spec to use. - type: string - runAsUserName: - description: The UserName in Windows to run the entrypoint of the container process. Defaults to the user specified in image metadata if unspecified. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. - type: string - type: object - type: object - startupProbe: - description: 'StartupProbe indicates that the Pod has successfully initialized. If specified, no other probes are executed until this completes successfully. If this probe fails, the Pod will be restarted, just as if the livenessProbe failed. This can be used to provide different probe parameters at the beginning of a Pod''s lifecycle, when it might take a long time to load data or warm a cache, than during steady-state operation. This cannot be updated. This is a beta feature enabled by the StartupProbe feature flag. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' - properties: - exec: - description: One and only one of the following should be specified. Exec specifies the action to take. - properties: - command: - description: Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy. - items: - type: string - type: array - type: object - failureThreshold: - description: Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1. - format: int32 - type: integer - httpGet: - description: HTTPGet specifies the http request to perform. - properties: - host: - description: Host name to connect to, defaults to the pod IP. You probably want to set "Host" in httpHeaders instead. - type: string - httpHeaders: - description: Custom headers to set in the request. HTTP allows repeated headers. - items: - description: HTTPHeader describes a custom header to be used in HTTP probes - properties: - name: - description: The header field name - type: string - value: - description: The header field value - type: string - required: - - name - - value - type: object - type: array - path: - description: Path to access on the HTTP server. - type: string - port: - anyOf: - - type: integer - - type: string - description: Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME. - x-kubernetes-int-or-string: true - scheme: - description: Scheme to use for connecting to the host. Defaults to HTTP. - type: string - required: - - port - type: object - initialDelaySeconds: - description: 'Number of seconds after the container has started before liveness probes are initiated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' - format: int32 - type: integer - periodSeconds: - description: How often (in seconds) to perform the probe. Default to 10 seconds. Minimum value is 1. - format: int32 - type: integer - successThreshold: - description: Minimum consecutive successes for the probe to be considered successful after having failed. Defaults to 1. Must be 1 for liveness and startup. Minimum value is 1. - format: int32 - type: integer - tcpSocket: - description: 'TCPSocket specifies an action involving a TCP port. TCP hooks not yet supported TODO: implement a realistic TCP lifecycle hook' - properties: - host: - description: 'Optional: Host name to connect to, defaults to the pod IP.' - type: string - port: - anyOf: - - type: integer - - type: string - description: Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME. - x-kubernetes-int-or-string: true - required: - - port - type: object - timeoutSeconds: - description: 'Number of seconds after which the probe times out. Defaults to 1 second. Minimum value is 1. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' - format: int32 - type: integer - type: object - stdin: - description: Whether this container should allocate a buffer for stdin in the container runtime. If this is not set, reads from stdin in the container will always result in EOF. Default is false. - type: boolean - stdinOnce: - description: Whether the container runtime should close the stdin channel after it has been opened by a single attach. When stdin is true the stdin stream will remain open across multiple attach sessions. If stdinOnce is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted. If this flag is false, a container processes that reads from stdin will never receive an EOF. Default is false - type: boolean - terminationMessagePath: - description: 'Optional: Path at which the file to which the container''s termination message will be written is mounted into the container''s filesystem. Message written is intended to be brief final status, such as an assertion failure message. Will be truncated by the node if greater than 4096 bytes. The total message length across all containers will be limited to 12kb. Defaults to /dev/termination-log. Cannot be updated.' - type: string - terminationMessagePolicy: - description: Indicate how the termination message should be populated. File will use the contents of terminationMessagePath to populate the container status message on both success and failure. FallbackToLogsOnError will use the last chunk of container log output if the termination message file is empty and the container exited with an error. The log output is limited to 2048 bytes or 80 lines, whichever is smaller. Defaults to File. Cannot be updated. - type: string - tty: - description: Whether this container should allocate a TTY for itself, also requires 'stdin' to be true. Default is false. - type: boolean - volumeDevices: - description: volumeDevices is the list of block devices to be used by the container. - items: - description: volumeDevice describes a mapping of a raw block device within a container. - properties: - devicePath: - description: devicePath is the path inside of the container that the device will be mapped to. - type: string - name: - description: name must match the name of a persistentVolumeClaim in the pod - type: string - required: - - devicePath - - name - type: object - type: array - volumeMounts: - description: Pod volumes to mount into the container's filesystem. Cannot be updated. - items: - description: VolumeMount describes a mounting of a Volume within a container. - properties: - mountPath: - description: Path within the container at which the volume should be mounted. Must not contain ':'. - type: string - mountPropagation: - description: mountPropagation determines how mounts are propagated from the host to container and the other way around. When not set, MountPropagationNone is used. This field is beta in 1.10. - type: string - name: - description: This must match the Name of a Volume. - type: string - readOnly: - description: Mounted read-only if true, read-write otherwise (false or unspecified). Defaults to false. - type: boolean - subPath: - description: Path within the volume from which the container's volume should be mounted. Defaults to "" (volume's root). - type: string - subPathExpr: - description: Expanded path within the volume from which the container's volume should be mounted. Behaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container's environment. Defaults to "" (volume's root). SubPathExpr and SubPath are mutually exclusive. - type: string - required: - - mountPath - - name - type: object - type: array - workingDir: - description: Container's working directory. If not specified, the container runtime's default will be used, which might be configured in the container image. Cannot be updated. - type: string - required: - - name - type: object - type: array - storageConfigs: - description: StorageConfig defines additional storage configurations - items: - description: StorageConfig defines additional storage configurations - properties: - mountPath: - description: Mount path into cassandra container - type: string - name: - description: Name of the pvc - pattern: '[a-z0-9]([-a-z0-9]*[a-z0-9])?(\.[a-z0-9]([-a-z0-9]*[a-z0-9])?)*' - type: string - pvcSpec: - description: Persistent volume claim spec - properties: - accessModes: - description: 'AccessModes contains the desired access modes the volume should have. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes-1' - items: - type: string - type: array - dataSource: - description: 'This field can be used to specify either: * An existing VolumeSnapshot object (snapshot.storage.k8s.io/VolumeSnapshot - Beta) * An existing PVC (PersistentVolumeClaim) * An existing custom resource/object that implements data population (Alpha) In order to use VolumeSnapshot object types, the appropriate feature gate must be enabled (VolumeSnapshotDataSource or AnyVolumeDataSource) If the provisioner or an external controller can support the specified data source, it will create a new volume based on the contents of the specified data source. If the specified data source is not supported, the volume will not be created and the failure will be reported as an event. In the future, we plan to support more data source types and the behavior of the provisioner may change.' - properties: - apiGroup: - description: APIGroup is the group for the resource being referenced. If APIGroup is not specified, the specified Kind must be in the core API group. For any other third-party types, APIGroup is required. - type: string - kind: - description: Kind is the type of resource being referenced - type: string - name: - description: Name is the name of resource being referenced - type: string - required: - - kind - - name - type: object - resources: - description: 'Resources represents the minimum resources the volume should have. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#resources' - properties: - limits: - additionalProperties: - anyOf: - - type: integer - - type: string - pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ - x-kubernetes-int-or-string: true - description: 'Limits describes the maximum amount of compute resources allowed. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/' - type: object - requests: - additionalProperties: - anyOf: - - type: integer - - type: string - pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ - x-kubernetes-int-or-string: true - description: 'Requests describes the minimum amount of compute resources required. If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/' - type: object - type: object - selector: - description: A label query over volumes to consider for binding. - properties: - matchExpressions: - description: matchExpressions is a list of label selector requirements. The requirements are ANDed. - items: - description: A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values. - properties: - key: - description: key is the label key that the selector applies to. - type: string - operator: - description: operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist. - type: string - values: - description: values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. - items: - type: string - type: array - required: - - key - - operator - type: object - type: array - matchLabels: - additionalProperties: - type: string - description: matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed. - type: object - type: object - storageClassName: - description: 'Name of the StorageClass required by the claim. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#class-1' - type: string - volumeMode: - description: volumeMode defines what type of volume is required by the claim. Value of Filesystem is implied when not included in claim spec. - type: string - volumeName: - description: VolumeName is the binding reference to the PersistentVolume backing this claim. - type: string - type: object - required: - - mountPath - - name - - pvcSpec - type: object - type: array - topology: - description: Topology to create Cassandra DC and Racks and to target appropriate Kubernetes Nodes - properties: - dc: - description: List of DC defined in the CassandraCluster - items: - description: DC allow to configure Cassandra RC according to kubernetes nodeselector labels - properties: - dataCapacity: - description: Define the Capacity for Persistent Volume Claims in the local storage - pattern: ^([+-]?[0-9.]+)([eEinumkKMGTP]*[-+]?[0-9]*)$ - type: string - dataStorageClass: - description: Define StorageClass for Persistent Volume Claims in the local storage. - type: string - labels: - additionalProperties: - type: string - description: Labels used to target Kubernetes nodes - type: object - name: - description: Name of the DC - pattern: ^[^-]+$ - type: string - nodesPerRacks: - description: 'Number of nodes to deploy for a Cassandra deployment in each Racks. Default: 1. Optional, if not filled, used value define in CassandraClusterSpec' - format: int32 - type: integer - numTokens: - description: 'NumTokens : configure the CASSANDRA_NUM_TOKENS parameter which can be different for each DD' - format: int32 - type: integer - rack: - description: List of Racks defined in the Cassandra DC - items: - description: Rack allow to configure Cassandra Rack according to kubernetes nodeselector labels - properties: - labels: - additionalProperties: - type: string - description: Labels used to target Kubernetes nodes - type: object - name: - description: Name of the Rack - pattern: ^[^-]+$ - type: string - rollingPartition: - description: The Partition to control the Statefulset Upgrade - format: int32 - type: integer - rollingRestart: - description: Flag to tell the operator to trigger a rolling restart of the Rack - type: boolean - type: object - type: array - resources: - description: ResourceRequirements describes the compute resource requirements. - properties: - limits: - additionalProperties: - anyOf: - - type: integer - - type: string - pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ - x-kubernetes-int-or-string: true - description: 'Limits describes the maximum amount of compute resources allowed. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/' - type: object - requests: - additionalProperties: - anyOf: - - type: integer - - type: string - pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ - x-kubernetes-int-or-string: true - description: 'Requests describes the minimum amount of compute resources required. If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/' - type: object - type: object - type: object - type: array - type: object - unlockNextOperation: - description: Very special Flag to hack CassKop reconcile loop - use with really good Care - type: boolean - type: object - status: - description: CassandraClusterStatus defines Global state of CassandraCluster - properties: - cassandraNodeStatus: - additionalProperties: - properties: - hostId: - type: string - nodeIp: - type: string - type: object - type: object - cassandraRackStatus: - additionalProperties: - description: CassandraRackStatus defines states of Cassandra for 1 rack (1 statefulset) - properties: - cassandraLastAction: - description: 'CassandraLastAction is the set of Cassandra State & Actions: Active, Standby..' - properties: - endTime: - format: date-time - type: string - name: - description: 'Type of action to perform : UpdateVersion, UpdateBaseImage, UpdateConfigMap..' - type: string - startTime: - format: date-time - type: string - status: - description: Action is the specific actions that can be done on a Cassandra Cluster such as cleanup, upgradesstables.. - type: string - updatedNodes: - description: PodNames of updated Cassandra nodes. Updated means the Cassandra container image version matches the spec's version. - items: - type: string - type: array - type: object - phase: - description: 'Phase indicates the state this Cassandra cluster jumps in. Phase goes as one way as below: Initial -> Running <-> updating' - type: string - podLastOperation: - description: PodLastOperation manage status for Pod Operation (nodetool cleanup, upgradesstables..) - properties: - endTime: - format: date-time - type: string - name: - type: string - operatorName: - description: Name of operator - type: string - pods: - description: List of pods running an operation - items: - type: string - type: array - podsKO: - description: List of pods that fail to run an operation - items: - type: string - type: array - podsOK: - description: List of pods that run an operation successfully - items: - type: string - type: array - startTime: - format: date-time - type: string - status: - type: string - type: object - type: object - description: CassandraRackStatusList list status for each Rack - type: object - lastClusterAction: - description: Store last action at cluster level - type: string - lastClusterActionStatus: - type: string - phase: - description: 'Phase indicates the state this Cassandra cluster jumps in. Phase goes as one way as below: Initial -> Running <-> updating' - type: string - seedlist: - description: seedList to be used in Cassandra's Pods (computed by the Operator) - items: - type: string - type: array - type: object - type: object - served: true - storage: false - - name: v2 - schema: - openAPIV3Schema: - description: CassandraCluster is the Schema for the cassandraclusters API - type: 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 - spec: - type: object - properties: - autoPilot: - description: AutoPilot defines if the Operator can fly alone or if we need human action to trigger Actions on specific Cassandra nodes If autoPilot=true, the operator will set labels pod-operation-status=To-Do on Pods which allows him to automatically triggers Action If autoPilot=false, the operator will set labels pod-operation-status=Manual on Pods which won't automatically triggers Action - type: boolean - autoUpdateSeedList: - description: AutoUpdateSeedList defines if the Operator automatically update the SeedList according to new cluster CRD topology by default a boolean is false - type: boolean - backRestSidecar: - description: BackRestSidecar defines details about cassandra-sidecar to load along with each C* pod - type: object - properties: - image: - description: Image of backup/restore sidecar - type: string - imagePullPolicy: - description: ImagePullPolicy define the pull policy for backrest sidecar docker image - type: string - resources: - description: 'Kubernetes object : https://godoc.org/k8s.io/api/core/v1#ResourceRequirements' - type: object - properties: - limits: - description: 'Limits describes the maximum amount of compute resources allowed. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/' - type: object - additionalProperties: - pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ - anyOf: - - type: integer - - type: string - x-kubernetes-int-or-string: true - requests: - description: 'Requests describes the minimum amount of compute resources required. If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/' - type: object - additionalProperties: - pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ - anyOf: - - type: integer - - type: string - x-kubernetes-int-or-string: true - volumeMount: - type: array - items: - description: VolumeMount describes a mounting of a Volume within a container. - type: object - required: - - mountPath - - name - properties: - mountPath: - description: Path within the container at which the volume should be mounted. Must not contain ':'. - type: string - mountPropagation: - description: mountPropagation determines how mounts are propagated from the host to container and the other way around. When not set, MountPropagationNone is used. This field is beta in 1.10. - type: string - name: - description: This must match the Name of a Volume. - type: string - readOnly: - description: Mounted read-only if true, read-write otherwise (false or unspecified). Defaults to false. - type: boolean - subPath: - description: Path within the volume from which the container's volume should be mounted. Defaults to "" (volume's root). - type: string - subPathExpr: - description: Expanded path within the volume from which the container's volume should be mounted. Behaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container's environment. Defaults to "" (volume's root). SubPathExpr and SubPath are mutually exclusive. - type: string - bootstrapImage: - description: Image used for bootstrapping cluster (use format base:version) - type: string - cassandraImage: - description: Image + version to use for Cassandra - type: string - config: - description: Config for the Cassandra nodes - type: object - format: byte - x-kubernetes-preserve-unknown-fields: true - configBuilderImage: - description: Image used for configBuilder (use format base:version) - type: string - configMapName: - description: Name of the ConfigMap for Cassandra configuration (cassandra.yaml) If this is empty, operator will uses default cassandra.yaml from the baseImage If this is not empty, operator will uses the cassandra.yaml from the Configmap instead - type: string - dataCapacity: - description: Define the Capacity for Persistent Volume Claims in the local storage - type: string - pattern: ^([+-]?[0-9.]+)([eEinumkKMGTP]*[-+]?[0-9]*)$ - dataStorageClass: - description: Define StorageClass for Persistent Volume Claims in the local storage. - type: string - debug: - description: Debug is used to surcharge Cassandra pod command to not directly start cassandra but starts an infinite wait to allow user to connect a bash into the pod to make some diagnoses. - type: boolean - deletePVC: - description: DeletePVC defines if the PVC must be deleted when the cluster is deleted it is false by default - type: boolean - fsGroup: - description: FSGroup defines the GID owning volumes in the Cassandra image - type: integer - format: int64 - default: 1 - minimum: 1 - hardAntiAffinity: - description: HardAntiAffinity defines if the PodAntiAffinity of the statefulset has to be hard (it's soft by default) - type: boolean - imageJolokiaSecret: - description: JMX Secret if Set is used to set JMX_USER and JMX_PASSWORD - type: object - properties: - name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' - type: string - imagePullSecret: - description: Name of the secret to uses to authenticate on Docker registries If this is empty, operator do nothing If this is not empty, propagate the imagePullSecrets to the statefulsets - type: object - properties: - name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' - type: string - imagepullpolicy: - description: ImagePullPolicy define the pull policy for C* docker image - type: string - livenessFailureThreshold: - description: 'LivenessFailureThreshold defines failure threshold for the liveness probe of the main cassandra container : https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/#configure-probes' - type: integer - format: int32 - livenessHealthCheckPeriod: - description: 'LivenessHealthCheckPeriod defines health check period for the liveness probe of the main cassandra container : https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/#configure-probes' - type: integer - format: int32 - livenessHealthCheckTimeout: - description: 'LivenessHealthCheckTimeout defines health check timeout for the liveness probe of the main cassandra container : https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/#configure-probes' - type: integer - format: int32 - livenessInitialDelaySeconds: - description: 'LivenessInitialDelaySeconds defines initial delay for the liveness probe of the main cassandra container : https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/#configure-probes' - type: integer - format: int32 - livenessSuccessThreshold: - description: 'LivenessSuccessThreshold defines success threshold for the liveness probe of the main cassandra container : https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/#configure-probes' - type: integer - format: int32 - maxPodUnavailable: - type: integer - format: int32 - noCheckStsAreEqual: - type: boolean - nodesPerRacks: - description: 'Number of nodes to deploy for a Cassandra deployment in each Racks. Default: 1. If NodesPerRacks = 2 and there is 3 racks, the cluster will have 6 Cassandra Nodes' - type: integer - format: int32 - pod: - description: PodPolicy defines the policy for pods owned by CassKop operator. - type: object - properties: - annotations: - description: Annotations specifies the annotations to attach to headless service the CassKop operator creates - type: object - additionalProperties: - type: string - tolerations: - description: Tolerations specifies the tolerations to attach to the pods the CassKop operator creates - type: array - items: - description: The pod this Toleration is attached to tolerates any taint that matches the triple using the matching operator . - type: object - properties: - effect: - description: Effect indicates the taint effect to match. Empty means match all taint effects. When specified, allowed values are NoSchedule, PreferNoSchedule and NoExecute. - type: string - key: - description: Key is the taint key that the toleration applies to. Empty means match all taint keys. If the key is empty, operator must be Exists; this combination means to match all values and all keys. - type: string - operator: - description: Operator represents a key's relationship to the value. Valid operators are Exists and Equal. Defaults to Equal. Exists is equivalent to wildcard for value, so that a pod can tolerate all taints of a particular category. - type: string - tolerationSeconds: - description: TolerationSeconds represents the period of time the toleration (which must be of effect NoExecute, otherwise this field is ignored) tolerates the taint. By default, it is not set, which means tolerate the taint forever (do not evict). Zero and negative values will be treated as 0 (evict immediately) by the system. - type: integer - format: int64 - value: - description: Value is the taint value the toleration matches to. If the operator is Exists, the value should be empty, otherwise just a regular string. - type: string - readOnlyRootFilesystem: - description: Make the pod as Readonly - type: boolean - readinessFailureThreshold: - description: 'ReadinessFailureThreshold defines failure threshold for the readiness probe of the main cassandra container : https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/#configure-probes' - type: integer - format: int32 - readinessHealthCheckPeriod: - description: 'ReadinessHealthCheckPeriod defines health check period for the readiness probe of the main cassandra container : https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/#configure-probes' - type: integer - format: int32 - readinessHealthCheckTimeout: - description: 'ReadinessHealthCheckTimeout defines health check timeout for the readiness probe of the main cassandra container : https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/#configure-probes' - type: integer - format: int32 - readinessInitialDelaySeconds: - description: 'ReadinessInitialDelaySeconds defines initial delay for the readiness probe of the main cassandra container : https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/#configure-probes' - type: integer - format: int32 - readinessSuccessThreshold: - description: 'ReadinessSuccessThreshold defines success threshold for the readiness probe of the main cassandra container : https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/#configure-probes' - type: integer - format: int32 - resources: - description: ResourceRequirements describes the compute resource requirements. - type: object - properties: - limits: - description: 'Limits describes the maximum amount of compute resources allowed. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/' - type: object - additionalProperties: - pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ - anyOf: - - type: integer - - type: string - x-kubernetes-int-or-string: true - requests: - description: 'Requests describes the minimum amount of compute resources required. If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/' - type: object - additionalProperties: - pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ - anyOf: - - type: integer - - type: string - x-kubernetes-int-or-string: true - restartCountBeforePodDeletion: - description: RestartCountBeforePodDeletion defines the number of restart allowed for a cassandra container allowed before deleting the pod to force its restart from scratch. if set to 0 or omit, no action will be performed based on restart count. - type: integer - format: int32 - runAsUser: - description: RunAsUser define the id of the user to run in the Cassandra image - type: integer - format: int64 - default: 999 - minimum: 1 - serverType: - description: 'Server type: "cassandra" or "dse" for config builder, default to cassandra' - type: string - default: cassandra - enum: - - cassandra - - dse - serverVersion: - description: Version string for config builder https://github.com/datastax/cass-config-definitions, used to generate Cassandra server configuration - type: string - service: - description: ServicePolicy defines the policy for headless service owned by CassKop operator. - type: object - properties: - annotations: - description: Annotations specifies the annotations to attach to headless service the CassKop operator creates - type: object - additionalProperties: - type: string - serviceAccountName: - type: string - shareProcessNamespace: - description: 'When process namespace sharing is enabled, processes in a container are visible to all other containers in that pod. https://kubernetes.io/docs/tasks/configure-pod-container/share-process-namespace/ Optional: Default to false.' - type: boolean - sidecarConfigs: - description: SidecarsConfig defines additional sidecar configurations - type: array - items: - description: A single application container that you want to run within a pod. - type: object - required: - - name - properties: - args: - description: 'Arguments to the entrypoint. The docker image''s CMD is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container''s environment. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell' - type: array - items: - type: string - command: - description: 'Entrypoint array. Not executed within a shell. The docker image''s ENTRYPOINT is used if this is not provided. Variable references $(VAR_NAME) are expanded using the container''s environment. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. Cannot be updated. More info: https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#running-a-command-in-a-shell' - type: array - items: - type: string - env: - description: List of environment variables to set in the container. Cannot be updated. - type: array - items: - description: EnvVar represents an environment variable present in a Container. - type: object - required: - - name - properties: - name: - description: Name of the environment variable. Must be a C_IDENTIFIER. - type: string - value: - description: 'Variable references $(VAR_NAME) are expanded using the previous defined environment variables in the container and any service environment variables. If a variable cannot be resolved, the reference in the input string will be unchanged. The $(VAR_NAME) syntax can be escaped with a double $$, ie: $$(VAR_NAME). Escaped references will never be expanded, regardless of whether the variable exists or not. Defaults to "".' - type: string - valueFrom: - description: Source for the environment variable's value. Cannot be used if value is not empty. - type: object - properties: - configMapKeyRef: - description: Selects a key of a ConfigMap. - type: object - required: - - key - properties: - key: - description: The key to select. - type: string - name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' - type: string - optional: - description: Specify whether the ConfigMap or its key must be defined - type: boolean - fieldRef: - description: 'Selects a field of the pod: supports metadata.name, metadata.namespace, `metadata.labels['''']`, `metadata.annotations['''']`, spec.nodeName, spec.serviceAccountName, status.hostIP, status.podIP, status.podIPs.' - type: object - required: - - fieldPath - properties: - apiVersion: - description: Version of the schema the FieldPath is written in terms of, defaults to "v1". - type: string - fieldPath: - description: Path of the field to select in the specified API version. - type: string - resourceFieldRef: - description: 'Selects a resource of the container: only resources limits and requests (limits.cpu, limits.memory, limits.ephemeral-storage, requests.cpu, requests.memory and requests.ephemeral-storage) are currently supported.' - type: object - required: - - resource - properties: - containerName: - description: 'Container name: required for volumes, optional for env vars' - type: string - divisor: - description: Specifies the output format of the exposed resources, defaults to "1" - pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ - anyOf: - - type: integer - - type: string - x-kubernetes-int-or-string: true - resource: - description: 'Required: resource to select' - type: string - secretKeyRef: - description: Selects a key of a secret in the pod's namespace - type: object - required: - - key - properties: - key: - description: The key of the secret to select from. Must be a valid secret key. - type: string - name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' - type: string - optional: - description: Specify whether the Secret or its key must be defined - type: boolean - envFrom: - description: List of sources to populate environment variables in the container. The keys defined within a source must be a C_IDENTIFIER. All invalid keys will be reported as an event when the container is starting. When a key exists in multiple sources, the value associated with the last source will take precedence. Values defined by an Env with a duplicate key will take precedence. Cannot be updated. - type: array - items: - description: EnvFromSource represents the source of a set of ConfigMaps - type: object - properties: - configMapRef: - description: The ConfigMap to select from - type: object - properties: - name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' - type: string - optional: - description: Specify whether the ConfigMap must be defined - type: boolean - prefix: - description: An optional identifier to prepend to each key in the ConfigMap. Must be a C_IDENTIFIER. - type: string - secretRef: - description: The Secret to select from - type: object - properties: - name: - description: 'Name of the referent. More info: https://kubernetes.io/docs/concepts/overview/working-with-objects/names/#names TODO: Add other useful fields. apiVersion, kind, uid?' - type: string - optional: - description: Specify whether the Secret must be defined - type: boolean - image: - description: 'Docker image name. More info: https://kubernetes.io/docs/concepts/containers/images This field is optional to allow higher level config management to default or override container images in workload controllers like Deployments and StatefulSets.' - type: string - imagePullPolicy: - description: 'Image pull policy. One of Always, Never, IfNotPresent. Defaults to Always if :latest tag is specified, or IfNotPresent otherwise. Cannot be updated. More info: https://kubernetes.io/docs/concepts/containers/images#updating-images' - type: string - lifecycle: - description: Actions that the management system should take in response to container lifecycle events. Cannot be updated. - type: object - properties: - postStart: - description: 'PostStart is called immediately after a container is created. If the handler fails, the container is terminated and restarted according to its restart policy. Other management of the container blocks until the hook completes. More info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks' - type: object - properties: - exec: - description: One and only one of the following should be specified. Exec specifies the action to take. - type: object - properties: - command: - description: Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy. - type: array - items: - type: string - httpGet: - description: HTTPGet specifies the http request to perform. - type: object - required: - - port - properties: - host: - description: Host name to connect to, defaults to the pod IP. You probably want to set "Host" in httpHeaders instead. - type: string - httpHeaders: - description: Custom headers to set in the request. HTTP allows repeated headers. - type: array - items: - description: HTTPHeader describes a custom header to be used in HTTP probes - type: object - required: - - name - - value - properties: - name: - description: The header field name - type: string - value: - description: The header field value - type: string - path: - description: Path to access on the HTTP server. - type: string - port: - description: Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME. - anyOf: - - type: integer - - type: string - x-kubernetes-int-or-string: true - scheme: - description: Scheme to use for connecting to the host. Defaults to HTTP. - type: string - tcpSocket: - description: 'TCPSocket specifies an action involving a TCP port. TCP hooks not yet supported TODO: implement a realistic TCP lifecycle hook' - type: object - required: - - port - properties: - host: - description: 'Optional: Host name to connect to, defaults to the pod IP.' - type: string - port: - description: Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME. - anyOf: - - type: integer - - type: string - x-kubernetes-int-or-string: true - preStop: - description: 'PreStop is called immediately before a container is terminated due to an API request or management event such as liveness/startup probe failure, preemption, resource contention, etc. The handler is not called if the container crashes or exits. The reason for termination is passed to the handler. The Pod''s termination grace period countdown begins before the PreStop hooked is executed. Regardless of the outcome of the handler, the container will eventually terminate within the Pod''s termination grace period. Other management of the container blocks until the hook completes or until the termination grace period is reached. More info: https://kubernetes.io/docs/concepts/containers/container-lifecycle-hooks/#container-hooks' - type: object - properties: - exec: - description: One and only one of the following should be specified. Exec specifies the action to take. - type: object - properties: - command: - description: Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy. - type: array - items: - type: string - httpGet: - description: HTTPGet specifies the http request to perform. - type: object - required: - - port - properties: - host: - description: Host name to connect to, defaults to the pod IP. You probably want to set "Host" in httpHeaders instead. - type: string - httpHeaders: - description: Custom headers to set in the request. HTTP allows repeated headers. - type: array - items: - description: HTTPHeader describes a custom header to be used in HTTP probes - type: object - required: - - name - - value - properties: - name: - description: The header field name - type: string - value: - description: The header field value - type: string - path: - description: Path to access on the HTTP server. - type: string - port: - description: Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME. - anyOf: - - type: integer - - type: string - x-kubernetes-int-or-string: true - scheme: - description: Scheme to use for connecting to the host. Defaults to HTTP. - type: string - tcpSocket: - description: 'TCPSocket specifies an action involving a TCP port. TCP hooks not yet supported TODO: implement a realistic TCP lifecycle hook' - type: object - required: - - port - properties: - host: - description: 'Optional: Host name to connect to, defaults to the pod IP.' - type: string - port: - description: Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME. - anyOf: - - type: integer - - type: string - x-kubernetes-int-or-string: true - livenessProbe: - description: 'Periodic probe of container liveness. Container will be restarted if the probe fails. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' - type: object - properties: - exec: - description: One and only one of the following should be specified. Exec specifies the action to take. - type: object - properties: - command: - description: Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy. - type: array - items: - type: string - failureThreshold: - description: Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1. - type: integer - format: int32 - httpGet: - description: HTTPGet specifies the http request to perform. - type: object - required: - - port - properties: - host: - description: Host name to connect to, defaults to the pod IP. You probably want to set "Host" in httpHeaders instead. - type: string - httpHeaders: - description: Custom headers to set in the request. HTTP allows repeated headers. - type: array - items: - description: HTTPHeader describes a custom header to be used in HTTP probes - type: object - required: - - name - - value - properties: - name: - description: The header field name - type: string - value: - description: The header field value - type: string - path: - description: Path to access on the HTTP server. - type: string - port: - description: Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME. - anyOf: - - type: integer - - type: string - x-kubernetes-int-or-string: true - scheme: - description: Scheme to use for connecting to the host. Defaults to HTTP. - type: string - initialDelaySeconds: - description: 'Number of seconds after the container has started before liveness probes are initiated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' - type: integer - format: int32 - periodSeconds: - description: How often (in seconds) to perform the probe. Default to 10 seconds. Minimum value is 1. - type: integer - format: int32 - successThreshold: - description: Minimum consecutive successes for the probe to be considered successful after having failed. Defaults to 1. Must be 1 for liveness and startup. Minimum value is 1. - type: integer - format: int32 - tcpSocket: - description: 'TCPSocket specifies an action involving a TCP port. TCP hooks not yet supported TODO: implement a realistic TCP lifecycle hook' - type: object - required: - - port - properties: - host: - description: 'Optional: Host name to connect to, defaults to the pod IP.' - type: string - port: - description: Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME. - anyOf: - - type: integer - - type: string - x-kubernetes-int-or-string: true - timeoutSeconds: - description: 'Number of seconds after which the probe times out. Defaults to 1 second. Minimum value is 1. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' - type: integer - format: int32 - name: - description: Name of the container specified as a DNS_LABEL. Each container in a pod must have a unique name (DNS_LABEL). Cannot be updated. - type: string - ports: - description: List of ports to expose from the container. Exposing a port here gives the system additional information about the network connections a container uses, but is primarily informational. Not specifying a port here DOES NOT prevent that port from being exposed. Any port which is listening on the default "0.0.0.0" address inside a container will be accessible from the network. Cannot be updated. - type: array - items: - description: ContainerPort represents a network port in a single container. - type: object - required: - - containerPort - properties: - containerPort: - description: Number of port to expose on the pod's IP address. This must be a valid port number, 0 < x < 65536. - type: integer - format: int32 - hostIP: - description: What host IP to bind the external port to. - type: string - hostPort: - description: Number of port to expose on the host. If specified, this must be a valid port number, 0 < x < 65536. If HostNetwork is specified, this must match ContainerPort. Most containers do not need this. - type: integer - format: int32 - name: - description: If specified, this must be an IANA_SVC_NAME and unique within the pod. Each named port in a pod must have a unique name. Name for the port that can be referred to by services. - type: string - protocol: - description: Protocol for port. Must be UDP, TCP, or SCTP. Defaults to "TCP". - type: string - default: TCP - x-kubernetes-list-map-keys: - - containerPort - x-kubernetes-list-type: map - readinessProbe: - description: 'Periodic probe of container service readiness. Container will be removed from service endpoints if the probe fails. Cannot be updated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' - type: object - properties: - exec: - description: One and only one of the following should be specified. Exec specifies the action to take. - type: object - properties: - command: - description: Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy. - type: array - items: - type: string - failureThreshold: - description: Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1. - type: integer - format: int32 - httpGet: - description: HTTPGet specifies the http request to perform. - type: object - required: - - port - properties: - host: - description: Host name to connect to, defaults to the pod IP. You probably want to set "Host" in httpHeaders instead. - type: string - httpHeaders: - description: Custom headers to set in the request. HTTP allows repeated headers. - type: array - items: - description: HTTPHeader describes a custom header to be used in HTTP probes - type: object - required: - - name - - value - properties: - name: - description: The header field name - type: string - value: - description: The header field value - type: string - path: - description: Path to access on the HTTP server. - type: string - port: - description: Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME. - anyOf: - - type: integer - - type: string - x-kubernetes-int-or-string: true - scheme: - description: Scheme to use for connecting to the host. Defaults to HTTP. - type: string - initialDelaySeconds: - description: 'Number of seconds after the container has started before liveness probes are initiated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' - type: integer - format: int32 - periodSeconds: - description: How often (in seconds) to perform the probe. Default to 10 seconds. Minimum value is 1. - type: integer - format: int32 - successThreshold: - description: Minimum consecutive successes for the probe to be considered successful after having failed. Defaults to 1. Must be 1 for liveness and startup. Minimum value is 1. - type: integer - format: int32 - tcpSocket: - description: 'TCPSocket specifies an action involving a TCP port. TCP hooks not yet supported TODO: implement a realistic TCP lifecycle hook' - type: object - required: - - port - properties: - host: - description: 'Optional: Host name to connect to, defaults to the pod IP.' - type: string - port: - description: Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME. - anyOf: - - type: integer - - type: string - x-kubernetes-int-or-string: true - timeoutSeconds: - description: 'Number of seconds after which the probe times out. Defaults to 1 second. Minimum value is 1. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' - type: integer - format: int32 - resources: - description: 'Compute Resources required by this container. Cannot be updated. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/' - type: object - properties: - limits: - description: 'Limits describes the maximum amount of compute resources allowed. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/' - type: object - additionalProperties: - pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ - anyOf: - - type: integer - - type: string - x-kubernetes-int-or-string: true - requests: - description: 'Requests describes the minimum amount of compute resources required. If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/' - type: object - additionalProperties: - pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ - anyOf: - - type: integer - - type: string - x-kubernetes-int-or-string: true - securityContext: - description: 'Security options the pod should run with. More info: https://kubernetes.io/docs/concepts/policy/security-context/ More info: https://kubernetes.io/docs/tasks/configure-pod-container/security-context/' - type: object - properties: - allowPrivilegeEscalation: - description: 'AllowPrivilegeEscalation controls whether a process can gain more privileges than its parent process. This bool directly controls if the no_new_privs flag will be set on the container process. AllowPrivilegeEscalation is true always when the container is: 1) run as Privileged 2) has CAP_SYS_ADMIN' - type: boolean - capabilities: - description: The capabilities to add/drop when running containers. Defaults to the default set of capabilities granted by the container runtime. - type: object - properties: - add: - description: Added capabilities - type: array - items: - description: Capability represent POSIX capabilities type - type: string - drop: - description: Removed capabilities - type: array - items: - description: Capability represent POSIX capabilities type - type: string - privileged: - description: Run container in privileged mode. Processes in privileged containers are essentially equivalent to root on the host. Defaults to false. - type: boolean - procMount: - description: procMount denotes the type of proc mount to use for the containers. The default is DefaultProcMount which uses the container runtime defaults for readonly paths and masked paths. This requires the ProcMountType feature flag to be enabled. - type: string - readOnlyRootFilesystem: - description: Whether this container has a read-only root filesystem. Default is false. - type: boolean - runAsGroup: - description: The GID to run the entrypoint of the container process. Uses runtime default if unset. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. - type: integer - format: int64 - runAsNonRoot: - description: Indicates that the container must run as a non-root user. If true, the Kubelet will validate the image at runtime to ensure that it does not run as UID 0 (root) and fail to start the container if it does. If unset or false, no such validation will be performed. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. - type: boolean - runAsUser: - description: The UID to run the entrypoint of the container process. Defaults to user specified in image metadata if unspecified. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. - type: integer - format: int64 - seLinuxOptions: - description: The SELinux context to be applied to the container. If unspecified, the container runtime will allocate a random SELinux context for each container. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. - type: object - properties: - level: - description: Level is SELinux level label that applies to the container. - type: string - role: - description: Role is a SELinux role label that applies to the container. - type: string - type: - description: Type is a SELinux type label that applies to the container. - type: string - user: - description: User is a SELinux user label that applies to the container. - type: string - seccompProfile: - description: The seccomp options to use by this container. If seccomp options are provided at both the pod & container level, the container options override the pod options. - type: object - required: - - type - properties: - localhostProfile: - description: localhostProfile indicates a profile defined in a file on the node should be used. The profile must be preconfigured on the node to work. Must be a descending path, relative to the kubelet's configured seccomp profile location. Must only be set if type is "Localhost". - type: string - type: - description: "type indicates which kind of seccomp profile will be applied. Valid options are: \n Localhost - a profile defined in a file on the node should be used. RuntimeDefault - the container runtime default profile should be used. Unconfined - no profile should be applied." - type: string - windowsOptions: - description: The Windows specific settings applied to all containers. If unspecified, the options from the PodSecurityContext will be used. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. - type: object - properties: - gmsaCredentialSpec: - description: GMSACredentialSpec is where the GMSA admission webhook (https://github.com/kubernetes-sigs/windows-gmsa) inlines the contents of the GMSA credential spec named by the GMSACredentialSpecName field. - type: string - gmsaCredentialSpecName: - description: GMSACredentialSpecName is the name of the GMSA credential spec to use. - type: string - runAsUserName: - description: The UserName in Windows to run the entrypoint of the container process. Defaults to the user specified in image metadata if unspecified. May also be set in PodSecurityContext. If set in both SecurityContext and PodSecurityContext, the value specified in SecurityContext takes precedence. - type: string - startupProbe: - description: 'StartupProbe indicates that the Pod has successfully initialized. If specified, no other probes are executed until this completes successfully. If this probe fails, the Pod will be restarted, just as if the livenessProbe failed. This can be used to provide different probe parameters at the beginning of a Pod''s lifecycle, when it might take a long time to load data or warm a cache, than during steady-state operation. This cannot be updated. This is a beta feature enabled by the StartupProbe feature flag. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' - type: object - properties: - exec: - description: One and only one of the following should be specified. Exec specifies the action to take. - type: object - properties: - command: - description: Command is the command line to execute inside the container, the working directory for the command is root ('/') in the container's filesystem. The command is simply exec'd, it is not run inside a shell, so traditional shell instructions ('|', etc) won't work. To use a shell, you need to explicitly call out to that shell. Exit status of 0 is treated as live/healthy and non-zero is unhealthy. - type: array - items: - type: string - failureThreshold: - description: Minimum consecutive failures for the probe to be considered failed after having succeeded. Defaults to 3. Minimum value is 1. - type: integer - format: int32 - httpGet: - description: HTTPGet specifies the http request to perform. - type: object - required: - - port - properties: - host: - description: Host name to connect to, defaults to the pod IP. You probably want to set "Host" in httpHeaders instead. - type: string - httpHeaders: - description: Custom headers to set in the request. HTTP allows repeated headers. - type: array - items: - description: HTTPHeader describes a custom header to be used in HTTP probes - type: object - required: - - name - - value - properties: - name: - description: The header field name - type: string - value: - description: The header field value - type: string - path: - description: Path to access on the HTTP server. - type: string - port: - description: Name or number of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME. - anyOf: - - type: integer - - type: string - x-kubernetes-int-or-string: true - scheme: - description: Scheme to use for connecting to the host. Defaults to HTTP. - type: string - initialDelaySeconds: - description: 'Number of seconds after the container has started before liveness probes are initiated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' - type: integer - format: int32 - periodSeconds: - description: How often (in seconds) to perform the probe. Default to 10 seconds. Minimum value is 1. - type: integer - format: int32 - successThreshold: - description: Minimum consecutive successes for the probe to be considered successful after having failed. Defaults to 1. Must be 1 for liveness and startup. Minimum value is 1. - type: integer - format: int32 - tcpSocket: - description: 'TCPSocket specifies an action involving a TCP port. TCP hooks not yet supported TODO: implement a realistic TCP lifecycle hook' - type: object - required: - - port - properties: - host: - description: 'Optional: Host name to connect to, defaults to the pod IP.' - type: string - port: - description: Number or name of the port to access on the container. Number must be in the range 1 to 65535. Name must be an IANA_SVC_NAME. - anyOf: - - type: integer - - type: string - x-kubernetes-int-or-string: true - timeoutSeconds: - description: 'Number of seconds after which the probe times out. Defaults to 1 second. Minimum value is 1. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' - type: integer - format: int32 - stdin: - description: Whether this container should allocate a buffer for stdin in the container runtime. If this is not set, reads from stdin in the container will always result in EOF. Default is false. - type: boolean - stdinOnce: - description: Whether the container runtime should close the stdin channel after it has been opened by a single attach. When stdin is true the stdin stream will remain open across multiple attach sessions. If stdinOnce is set to true, stdin is opened on container start, is empty until the first client attaches to stdin, and then remains open and accepts data until the client disconnects, at which time stdin is closed and remains closed until the container is restarted. If this flag is false, a container processes that reads from stdin will never receive an EOF. Default is false - type: boolean - terminationMessagePath: - description: 'Optional: Path at which the file to which the container''s termination message will be written is mounted into the container''s filesystem. Message written is intended to be brief final status, such as an assertion failure message. Will be truncated by the node if greater than 4096 bytes. The total message length across all containers will be limited to 12kb. Defaults to /dev/termination-log. Cannot be updated.' - type: string - terminationMessagePolicy: - description: Indicate how the termination message should be populated. File will use the contents of terminationMessagePath to populate the container status message on both success and failure. FallbackToLogsOnError will use the last chunk of container log output if the termination message file is empty and the container exited with an error. The log output is limited to 2048 bytes or 80 lines, whichever is smaller. Defaults to File. Cannot be updated. - type: string - tty: - description: Whether this container should allocate a TTY for itself, also requires 'stdin' to be true. Default is false. - type: boolean - volumeDevices: - description: volumeDevices is the list of block devices to be used by the container. - type: array - items: - description: volumeDevice describes a mapping of a raw block device within a container. - type: object - required: - - devicePath - - name - properties: - devicePath: - description: devicePath is the path inside of the container that the device will be mapped to. - type: string - name: - description: name must match the name of a persistentVolumeClaim in the pod - type: string - volumeMounts: - description: Pod volumes to mount into the container's filesystem. Cannot be updated. - type: array - items: - description: VolumeMount describes a mounting of a Volume within a container. - type: object - required: - - mountPath - - name - properties: - mountPath: - description: Path within the container at which the volume should be mounted. Must not contain ':'. - type: string - mountPropagation: - description: mountPropagation determines how mounts are propagated from the host to container and the other way around. When not set, MountPropagationNone is used. This field is beta in 1.10. - type: string - name: - description: This must match the Name of a Volume. - type: string - readOnly: - description: Mounted read-only if true, read-write otherwise (false or unspecified). Defaults to false. - type: boolean - subPath: - description: Path within the volume from which the container's volume should be mounted. Defaults to "" (volume's root). - type: string - subPathExpr: - description: Expanded path within the volume from which the container's volume should be mounted. Behaves similarly to SubPath but environment variable references $(VAR_NAME) are expanded using the container's environment. Defaults to "" (volume's root). SubPathExpr and SubPath are mutually exclusive. - type: string - workingDir: - description: Container's working directory. If not specified, the container runtime's default will be used, which might be configured in the container image. Cannot be updated. - type: string - storageConfigs: - description: StorageConfig defines additional storage configurations - type: array - items: - description: StorageConfig defines additional storage configurations - type: object - required: - - mountPath - - name - - pvcSpec - properties: - mountPath: - description: Mount path into cassandra container - type: string - name: - description: Name of the pvc - type: string - pattern: '[a-z0-9]([-a-z0-9]*[a-z0-9])?(\.[a-z0-9]([-a-z0-9]*[a-z0-9])?)*' - pvcSpec: - description: Persistent volume claim spec - type: object - properties: - accessModes: - description: 'AccessModes contains the desired access modes the volume should have. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#access-modes-1' - type: array - items: - type: string - dataSource: - description: 'This field can be used to specify either: * An existing VolumeSnapshot object (snapshot.storage.k8s.io/VolumeSnapshot - Beta) * An existing PVC (PersistentVolumeClaim) * An existing custom resource/object that implements data population (Alpha) In order to use VolumeSnapshot object types, the appropriate feature gate must be enabled (VolumeSnapshotDataSource or AnyVolumeDataSource) If the provisioner or an external controller can support the specified data source, it will create a new volume based on the contents of the specified data source. If the specified data source is not supported, the volume will not be created and the failure will be reported as an event. In the future, we plan to support more data source types and the behavior of the provisioner may change.' - type: object - required: - - kind - - name - properties: - apiGroup: - description: APIGroup is the group for the resource being referenced. If APIGroup is not specified, the specified Kind must be in the core API group. For any other third-party types, APIGroup is required. - type: string - kind: - description: Kind is the type of resource being referenced - type: string - name: - description: Name is the name of resource being referenced - type: string - resources: - description: 'Resources represents the minimum resources the volume should have. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#resources' - type: object - properties: - limits: - description: 'Limits describes the maximum amount of compute resources allowed. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/' - type: object - additionalProperties: - pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ - anyOf: - - type: integer - - type: string - x-kubernetes-int-or-string: true - requests: - description: 'Requests describes the minimum amount of compute resources required. If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/' - type: object - additionalProperties: - pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ - anyOf: - - type: integer - - type: string - x-kubernetes-int-or-string: true - selector: - description: A label query over volumes to consider for binding. - type: object - properties: - matchExpressions: - description: matchExpressions is a list of label selector requirements. The requirements are ANDed. - type: array - items: - description: A label selector requirement is a selector that contains values, a key, and an operator that relates the key and values. - type: object - required: - - key - - operator - properties: - key: - description: key is the label key that the selector applies to. - type: string - operator: - description: operator represents a key's relationship to a set of values. Valid operators are In, NotIn, Exists and DoesNotExist. - type: string - values: - description: values is an array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. - type: array - items: - type: string - matchLabels: - description: matchLabels is a map of {key,value} pairs. A single {key,value} in the matchLabels map is equivalent to an element of matchExpressions, whose key field is "key", the operator is "In", and the values array contains only "value". The requirements are ANDed. - type: object - additionalProperties: - type: string - storageClassName: - description: 'Name of the StorageClass required by the claim. More info: https://kubernetes.io/docs/concepts/storage/persistent-volumes#class-1' - type: string - volumeMode: - description: volumeMode defines what type of volume is required by the claim. Value of Filesystem is implied when not included in claim spec. - type: string - volumeName: - description: VolumeName is the binding reference to the PersistentVolume backing this claim. - type: string - topology: - description: Topology to create Cassandra DC and Racks and to target appropriate Kubernetes Nodes - type: object - properties: - dc: - description: List of DC defined in the CassandraCluster - type: array - items: - description: DC allow to configure Cassandra RC according to kubernetes nodeselector labels - type: object - properties: - config: - description: Config for the Cassandra nodes - type: object - format: byte - x-kubernetes-preserve-unknown-fields: true - dataCapacity: - description: Define the Capacity for Persistent Volume Claims in the local storage - type: string - pattern: ^([+-]?[0-9.]+)([eEinumkKMGTP]*[-+]?[0-9]*)$ - dataStorageClass: - description: Define StorageClass for Persistent Volume Claims in the local storage. - type: string - labels: - description: Labels used to target Kubernetes nodes - type: object - additionalProperties: - type: string - name: - description: Name of the DC - type: string - pattern: ^[^-]+$ - nodesPerRacks: - description: 'Number of nodes to deploy for a Cassandra deployment in each Racks. Default: 1. Optional, if not filled, used value define in CassandraClusterSpec' - type: integer - format: int32 - rack: - description: List of Racks defined in the Cassandra DC - type: array - items: - description: Rack allow to configure Cassandra Rack according to kubernetes nodeselector labels - type: object - properties: - config: - description: Config for the Cassandra nodes - type: object - format: byte - x-kubernetes-preserve-unknown-fields: true - labels: - description: Labels used to target Kubernetes nodes - type: object - additionalProperties: - type: string - name: - description: Name of the Rack - type: string - pattern: ^[^-]+$ - rollingPartition: - description: The Partition to control the Statefulset Upgrade - type: integer - format: int32 - rollingRestart: - description: Flag to tell the operator to trigger a rolling restart of the Rack - type: boolean - resources: - description: ResourceRequirements describes the compute resource requirements. - type: object - properties: - limits: - description: 'Limits describes the maximum amount of compute resources allowed. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/' - type: object - additionalProperties: - pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ - anyOf: - - type: integer - - type: string - x-kubernetes-int-or-string: true - requests: - description: 'Requests describes the minimum amount of compute resources required. If Requests is omitted for a container, it defaults to Limits if that is explicitly specified, otherwise to an implementation-defined value. More info: https://kubernetes.io/docs/concepts/configuration/manage-compute-resources-container/' - type: object - additionalProperties: - pattern: ^(\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))(([KMGTPE]i)|[numkMGTPE]|([eE](\+|-)?(([0-9]+(\.[0-9]*)?)|(\.[0-9]+))))?$ - anyOf: - - type: integer - - type: string - x-kubernetes-int-or-string: true - unlockNextOperation: - description: Very special Flag to hack CassKop reconcile loop - use with really good care - type: boolean - x-kubernetes-preserve-unknown-fields: true - status: - description: CassandraClusterStatus defines Global state of CassandraCluster - type: object - properties: - cassandraNodeStatus: - type: object - additionalProperties: - type: object - properties: - hostId: - type: string - nodeIp: - type: string - cassandraRackStatus: - description: CassandraRackStatusList list status for each Rack - type: object - additionalProperties: - description: CassandraRackStatus defines states of Cassandra for 1 rack (1 statefulset) - type: object - properties: - cassandraLastAction: - description: 'CassandraLastAction is the set of Cassandra State & Actions: Active, Standby..' - type: object - properties: - endTime: - type: string - format: date-time - name: - description: 'Type of action to perform : UpdateVersion, UpdateBaseImage, UpdateConfigMap..' - type: string - startTime: - type: string - format: date-time - status: - description: Action is the specific actions that can be done on a Cassandra Cluster such as cleanup, upgradesstables.. - type: string - updatedNodes: - description: PodNames of updated Cassandra nodes. Updated means the Cassandra container image version matches the spec's version. - type: array - items: - type: string - phase: - description: 'Phase indicates the state this Cassandra cluster jumps in. Phase goes as one way as below: Initial -> Running <-> updating' - type: string - podLastOperation: - description: PodLastOperation manage status for Pod Operation (nodetool cleanup, upgradesstables..) - type: object - properties: - endTime: - type: string - format: date-time - name: - type: string - operatorName: - description: Name of operator - type: string - pods: - description: List of pods running an operation - type: array - items: - type: string - podsKO: - description: List of pods that fail to run an operation - type: array - items: - type: string - podsOK: - description: List of pods that run an operation successfully - type: array - items: - type: string - startTime: - type: string - format: date-time - status: - type: string - lastClusterAction: - description: Store last action at cluster level - type: string - lastClusterActionStatus: - type: string - phase: - description: 'Phase indicates the state this Cassandra cluster jumps in. Phase goes as one way as below: Initial -> Running <-> updating' - type: string - seedlist: - description: seedList to be used in Cassandra's Pods (computed by the Operator) - type: array - items: - type: string - served: true - storage: true -status: - acceptedNames: - kind: "" - plural: "" - conditions: [] - storedVersions: [] diff --git a/data/casskop-operator/cassandra-operator/crds/db.orange.com_cassandrarestores.yaml b/data/casskop-operator/cassandra-operator/crds/db.orange.com_cassandrarestores.yaml deleted file mode 100644 index 59d251c63b..0000000000 --- a/data/casskop-operator/cassandra-operator/crds/db.orange.com_cassandrarestores.yaml +++ /dev/null @@ -1,219 +0,0 @@ -apiVersion: apiextensions.k8s.io/v1 -kind: CustomResourceDefinition -metadata: - name: cassandrarestores.db.orange.com -spec: - group: db.orange.com - names: - kind: CassandraRestore - listKind: CassandraRestoreList - plural: cassandrarestores - singular: cassandrarestore - scope: Namespaced - versions: - - name: v1alpha1 - schema: - openAPIV3Schema: - description: CassandraRestore is a Casskop Operator resource that represents the restoration of a backup of a Cassandra cluster - 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: - description: CassandraRestoreSpec defines the specification for a restore of a Cassandra backup. - properties: - cassandraBackup: - description: Name of the CassandraBackup to restore - type: string - cassandraCluster: - description: Name of the CassandraCluster the restore belongs to - type: string - cassandraDirectory: - description: Directory of Cassandra where data folder resides. Defaults to /var/lib/cassandra - type: string - concurrentConnection: - description: Maximum number of threads used to download files from the cloud. Defaults to 10 - format: int32 - type: integer - datacenter: - description: Cassandra DC name to restore, used to find the cassandra nodes in the CassandraCluster - type: string - entities: - description: Database entities to restore, it might be either only keyspaces or only tables prefixed by their respective keyspace, e.g. 'k1,k2' if one wants to backup whole keyspaces or 'ks1.t1,ks2.t2' if one wants to restore specific tables. These formats are mutually exclusive so 'k1,k2.t2' is invalid. An empty field will restore all keyspaces - type: string - exactSchemaVersion: - description: When set a running node's schema version must match the snapshot's schema version. There might be cases when we want to restore a table for which its CQL schema has not changed but it has changed for other table / keyspace but a schema for that node has changed by doing that. Defaults to False - type: boolean - noDeleteTruncates: - description: When set do not delete truncated SSTables after they've been restored during CLEANUP phase. Defaults to false - type: boolean - rename: - additionalProperties: - type: string - type: object - schemaVersion: - description: Version of the schema to restore from. Upon backup, a schema version is automatically appended to a snapshot name and its manifest is uploaded under that name. In case we have two snapshots having same name, we might distinguish between the two of them by using the schema version. If schema version is not specified, we expect a unique backup taken with respective snapshot name. This schema version has to match the version of a Cassandra node we are doing restore for (hence, by proxy, when global request mode is used, all nodes have to be on exact same schema version). Defaults to False - type: string - secret: - description: Name of Secret to use when accessing cloud storage providers - type: string - required: - - cassandraBackup - - cassandraCluster - type: object - status: - properties: - condition: - description: BackRestCondition describes the observed state of a Restore at a certain point - properties: - failureCause: - items: - properties: - message: - description: message explaining the error - type: string - source: - description: hostame of a node where this error has occurred - type: string - type: object - type: array - lastTransitionTime: - type: string - type: - type: string - required: - - type - type: object - coordinatorMember: - description: Name of the pod the restore operation is executed on - type: string - id: - description: unique identifier of an operation, a random id is assigned to each operation after a request is submitted, from caller's perspective, an id is sent back as a response to his request so he can further query state of that operation, referencing id, by operations/{id} endpoint - type: string - progress: - description: Progress is a percentage, 100% means the operation is completed, either successfully or with errors - type: string - timeCompleted: - type: string - timeCreated: - type: string - timeStarted: - type: string - type: object - required: - - metadata - - spec - type: object - served: true - storage: false - - name: v2 - schema: - openAPIV3Schema: - description: CassandraRestore is a Casskop Operator resource that represents the restoration of a backup of a Cassandra cluster - type: object - required: - - metadata - - spec - 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: - description: CassandraRestoreSpec defines the specification for a restore of a Cassandra backup. - type: object - required: - - cassandraBackup - - cassandraCluster - properties: - cassandraBackup: - description: Name of the CassandraBackup to restore - type: string - cassandraCluster: - description: Name of the CassandraCluster the restore belongs to - type: string - cassandraDirectory: - description: Directory of Cassandra where data folder resides. Defaults to /var/lib/cassandra - type: string - concurrentConnection: - description: Maximum number of threads used to download files from the cloud. Defaults to 10 - type: integer - format: int32 - datacenter: - description: Cassandra DC name to restore, used to find the cassandra nodes in the CassandraCluster - type: string - entities: - description: Database entities to restore, it might be either only keyspaces or only tables prefixed by their respective keyspace, e.g. 'k1,k2' if one wants to backup whole keyspaces or 'ks1.t1,ks2.t2' if one wants to restore specific tables. These formats are mutually exclusive so 'k1,k2.t2' is invalid. An empty field will restore all keyspaces - type: string - exactSchemaVersion: - description: When set a running node's schema version must match the snapshot's schema version. There might be cases when we want to restore a table for which its CQL schema has not changed but it has changed for other table / keyspace but a schema for that node has changed by doing that. Defaults to False - type: boolean - noDeleteTruncates: - description: When set do not delete truncated SSTables after they've been restored during CLEANUP phase. Defaults to false - type: boolean - rename: - type: object - additionalProperties: - type: string - schemaVersion: - description: Version of the schema to restore from. Upon backup, a schema version is automatically appended to a snapshot name and its manifest is uploaded under that name. In case we have two snapshots having same name, we might distinguish between the two of them by using the schema version. If schema version is not specified, we expect a unique backup taken with respective snapshot name. This schema version has to match the version of a Cassandra node we are doing restore for (hence, by proxy, when global request mode is used, all nodes have to be on exact same schema version). Defaults to False - type: string - secret: - description: Name of Secret to use when accessing cloud storage providers - type: string - status: - type: object - properties: - condition: - description: BackRestCondition describes the observed state of a Restore at a certain point - type: object - required: - - type - properties: - failureCause: - type: array - items: - type: object - properties: - message: - description: message explaining the error - type: string - source: - description: hostame of a node where this error has occurred - type: string - lastTransitionTime: - type: string - type: - type: string - coordinatorMember: - description: Name of the pod the restore operation is executed on - type: string - id: - description: unique identifier of an operation, a random id is assigned to each operation after a request is submitted, from caller's perspective, an id is sent back as a response to his request so he can further query state of that operation, referencing id, by operations/{id} endpoint - type: string - progress: - description: Progress is a percentage, 100% means the operation is completed, either successfully or with errors - type: string - timeCompleted: - type: string - timeCreated: - type: string - timeStarted: - type: string - served: true - storage: true -status: - acceptedNames: - kind: "" - plural: "" - conditions: [] - storedVersions: [] diff --git a/data/casskop-operator/cassandra-operator/readme.md b/data/casskop-operator/cassandra-operator/readme.md deleted file mode 100644 index 0c8018f2db..0000000000 --- a/data/casskop-operator/cassandra-operator/readme.md +++ /dev/null @@ -1,133 +0,0 @@ - -# CassKop - Cassandra Kubernetes operator Helm chart - -This Helm chart install CassKop the Orange's Cassandra Kubernetes operator to create/configure/manage Cassandra -clusters in a Kubernetes Namespace. -It will uses a Custom Ressource Definition CRD: `cassandraclusters.db.orange.com`, -which implements a `CassandraCluster` kubernetes custom ressource definition. - - -## Introduction - - -### Configuration - -The following tables lists the configurable parameters of the Cassandra Operator Helm chart and their default values. - - -| Parameter | Description | Default | -|----------------------------------|--------------------------------------------------|-------------------------------------------| -| `image.repository` | Image | `orangeopensource/casskop` | -| `image.tag` | Image tag | `0.3.1-master` | -| `image.pullPolicy` | Image pull policy | `Always` | -| `image.imagePullSecrets.enabled` | Enable tue use of secret for docker image | `false` | -| `image.imagePullSecrets.name` | Name of the secret to connect to docker registry | - | -| `rbacEnable` | If true, create & use RBAC resources | `true` | -| `resources` | Pod resource requests & limits | `{}` | -| `metricService` | deploy service for metrics | `false` | -| `debug.enabled` | activate DEBUG log level and enable shareProcessNamespace (allowing ephemeral container usage) | `false` | - - - -Specify each parameter using the `--set key=value[,key=value]` argument to `helm install`. For example, - -Alternatively, a YAML file that specifies the values for the above parameters can be provided while installing the chart. For example, - -```console -$ helm install --name casskop incubator/cassandra-operator -f values.yaml -``` - -### Installing the Chart - -You can make a dry run of the chart before deploying : - -```console -helm install --dry-run --debug.enabled incubator/cassandra-operator --set debug.enabled=true --name casskop -``` - -To install the chart with the release name my-release: - -```console -$ helm install --name casskop incubator/cassandra-operator -``` - -We can surcharge default parameters using `--set` flag : - -```console -$ helm install --replace --set image.tag=asyncronous --name casskop incubator/cassandra-operator -``` - -> the `-replace` flag allow you to reuses a charts release name - - -### Listing deployed charts - -``` -helm list -``` - -### Get Status for the helm deployment : - -``` -helm status casskop - -``` - -## Uninstaling the Charts - -If you want to delete the operator from your Kubernetes cluster, the operator deployment -should be deleted. - -``` -$ helm delete casskop -``` -The command removes all the Kubernetes components associated with the chart and deletes the helm release. - -> The CRD created by the chart are not removed by default and should be manually cleaned up (if required) - -Manually delete the CRD: -``` -kubectl delete crd cassandraclusters.dfy.orange.com -``` - -> **!!!!!!!!WARNING!!!!!!!!** -> -> If you delete the CRD then **!!!!!!WAAAARRRRNNIIIIINNG!!!!!!** -> -> It will delete **ALL** Clusters that has been created using this CRD!!! -> -> Please never delete a CRD without very very good care - - -Helm always keeps records of what releases happened. Need to see the deleted releases? `helm list --deleted` -shows those, and `helm list --all` shows all of the releases (deleted and currently deployed, as well as releases that -failed): - -Because Helm keeps records of deleted releases, a release name cannot be re-used. (If you really need to re-use a -release name, you can use the `--replace` flag, but it will simply re-use the existing release and replace its -resources.) - -Note that because releases are preserved in this way, you can rollback a deleted resource, and have it re-activate. - - - -To purge a release -```console -$ helm delete --purge casskop -``` - - -## Troubleshooting - -### Install of the CRD - -By default, the chart will install the Casskop CRD, but this installation is global for the whole -cluster, and you may deploy a chart with an existing CRD already deployed. - -In that case you can get an error like : - - -``` -$ helm install --name casskop ./helm/cassandra-operator -Error: customresourcedefinitions.apiextensions.k8s.io "cassandraclusters.db.orange.com" already exists -``` diff --git a/data/casskop-operator/cassandra-operator/templates/NOTES.txt b/data/casskop-operator/cassandra-operator/templates/NOTES.txt deleted file mode 100644 index eb7350d7af..0000000000 --- a/data/casskop-operator/cassandra-operator/templates/NOTES.txt +++ /dev/null @@ -1,5 +0,0 @@ -Congratulations. You have just deployed CassKop the Cassandra Operator. -Check its status by running: -kubectl --namespace {{ .Release.Namespace }} get pods -l "release={{ .Release.Name }}" - -Visit https://github.com/Orange-OpenSource/casskop for instructions on hot to create & configure Cassandra clusters using the operator. diff --git a/data/casskop-operator/cassandra-operator/templates/_functions.tpl b/data/casskop-operator/cassandra-operator/templates/_functions.tpl deleted file mode 100644 index 761243384b..0000000000 --- a/data/casskop-operator/cassandra-operator/templates/_functions.tpl +++ /dev/null @@ -1,33 +0,0 @@ -{{/* vim: set filetype=mustache: */}} -{{/* -Expand the name of the chart. -*/}} -{{- define "cassandra-operator.name" -}} -{{- default .Chart.Name .Values.nameOverride | trunc 63 | trimSuffix "-" -}} -{{- end -}} - -{{/* -Create a default fully qualified app name. -We truncate at 63 chars because some Kubernetes name fields are limited to this (by the DNS naming spec). -If release name contains chart name it will be used as a full name. -*/}} -{{- define "cassandra-operator.fullname" -}} -{{- if .Values.fullnameOverride -}} -{{- .Values.fullnameOverride | trunc 63 | trimSuffix "-" -}} -{{- else -}} -{{- $name := default .Chart.Name .Values.nameOverride -}} -{{- if contains $name .Release.Name -}} -{{- .Release.Name | trunc 63 | trimSuffix "-" -}} -{{- else -}} -{{- printf "%s-%s" .Release.Name $name | trunc 63 | trimSuffix "-" -}} -{{- end -}} -{{- end -}} -{{- end -}} - -{{/* -Return the appropriate apiVersion value to use for the capi-operator managed k8s resources -*/}} -{{- define "cassandra-operator.apiVersion" -}} -{{- printf "%s" "cassandraclusters.db.orange.com/v2" -}} -{{- end -}} - diff --git a/data/casskop-operator/cassandra-operator/templates/deployment.yaml b/data/casskop-operator/cassandra-operator/templates/deployment.yaml deleted file mode 100644 index 886884499e..0000000000 --- a/data/casskop-operator/cassandra-operator/templates/deployment.yaml +++ /dev/null @@ -1,73 +0,0 @@ -apiVersion: apps/v1 -kind: Deployment -metadata: - name: {{ template "cassandra-operator.fullname" . }} - labels: - app: {{ template "cassandra-operator.name" . }} - chart: {{ .Chart.Name }}-{{ .Chart.Version }} - heritage: {{ .Release.Service }} - operator: cassandra - release: {{ .Release.Name }} -spec: - replicas: 1 - selector: - matchLabels: - name: {{ template "cassandra-operator.name" . }} - template: - metadata: - labels: - name: {{ template "cassandra-operator.name" . }} - app: {{ template "cassandra-operator.name" . }} - operator: cassandra - release: {{ .Release.Name }} - acto/tag: operator-pod - spec: -{{- if .Values.image.imagePullSecrets.enabled }} - imagePullSecrets: - - name: {{ .Values.image.imagePullSecrets.name }} -{{- end }} -{{- if .Values.rbacEnable }} - serviceAccountName: {{ template "cassandra-operator.name" . }} -{{- end }} - securityContext: - runAsUser: 1000 -{{- if .Values.debug.enabled }} - shareProcessNamespace: true -{{- end }} - containers: - - name: {{ template "cassandra-operator.name" . }} - image: "{{ .Values.image.repository }}:{{ .Values.image.tag }}" - imagePullPolicy: "{{ .Values.image.pullPolicy }}" - command: - - casskop - livenessProbe: - httpGet: - path: /healthz - port: 8081 - initialDelaySeconds: {{ .Values.livenessProbe.timeouts.initialDelaySeconds }} - periodSeconds: {{ .Values.livenessProbe.timeouts.periodSeconds }} - failureThreshold: {{ .Values.livenessProbe.timeouts.failureThreshold }} - readinessProbe: - httpGet: - path: /readyz - port: 8081 - initialDelaySeconds: {{ .Values.readinessProbe.timeouts.initialDelaySeconds }} - periodSeconds: {{ .Values.readinessProbe.timeouts.periodSeconds }} - failureThreshold: {{ .Values.readinessProbe.timeouts.failureThreshold }} - resources: -{{ toYaml .Values.resources | indent 10 }} - env: - - name: WATCH_NAMESPACE - valueFrom: - fieldRef: - fieldPath: metadata.namespace - - name: POD_NAME - valueFrom: - fieldRef: - fieldPath: metadata.name - - name: OPERATOR_NAME - value: "cassandra-operator" -{{- if .Values.debug.enabled }} - - name: LOG_LEVEL - value: Debug -{{- end }} diff --git a/data/casskop-operator/cassandra-operator/templates/role.yaml b/data/casskop-operator/cassandra-operator/templates/role.yaml deleted file mode 100644 index 5803f431fa..0000000000 --- a/data/casskop-operator/cassandra-operator/templates/role.yaml +++ /dev/null @@ -1,113 +0,0 @@ -{{- if .Values.rbacEnable }} -kind: Role -apiVersion: rbac.authorization.k8s.io/v1beta1 -metadata: - labels: - app: {{ template "cassandra-operator.name" . }} - chart: {{ .Chart.Name }}-{{ .Chart.Version }} - heritage: {{ .Release.Service }} - release: {{ .Release.Name }} - name: {{ template "cassandra-operator.name" . }} -rules: -- apiGroups: - - db.orange.com - resources: - - "cassandraclusters" - - "cassandrabackups" - - "cassandrarestores" - verbs: - - create - - delete - - get - - list - - patch - - update - - watch - - deletecollection -- apiGroups: - - db.orange.com - resources: - - cassandraclusters/status - - cassandrabackups/status - - cassandrarestores/status - verbs: - - get - - update - - patch -- apiGroups: - - "" - resources: - - pods - - pods/exec - - services - - endpoints - - persistentvolumeclaims - - events - - configmaps - - secrets - verbs: - - create - - delete - - get - - list - - patch - - update - - watch -- apiGroups: - - "" - resources: - - namespaces - verbs: - - get -- apiGroups: - - apps - resources: - - deployments - - daemonsets - - replicasets - - statefulsets - verbs: - - create - - delete - - get - - list - - patch - - update - - watch -- apiGroups: - - policy - resources: - - poddisruptionbudgets - verbs: - - create - - delete - - get - - list - - patch - - update - - watch -- apiGroups: - - monitoring.coreos.com - resources: - - servicemonitors - verbs: - - "get" - - "create" ---- -apiVersion: rbac.authorization.k8s.io/v1 -kind: Role -metadata: - labels: - app: {{ template "cassandra-operator.name" . }} - chart: {{ .Chart.Name }}-{{ .Chart.Version }} - heritage: {{ .Release.Service }} - release: {{ .Release.Name }} - name: {{ template "cassandra-operator.name" . }}-cluster-node -rules: - - apiGroups: [""] - resources: ["pods", "configmaps", "secrets" ] - verbs: ["get", "list", "watch"] - - apiGroups: [""] - resources: ["pods/exec"] - verbs: ["get","create"] -{{- end }} diff --git a/data/casskop-operator/cassandra-operator/templates/rolebinding.yaml b/data/casskop-operator/cassandra-operator/templates/rolebinding.yaml deleted file mode 100644 index 9f8ac7bde7..0000000000 --- a/data/casskop-operator/cassandra-operator/templates/rolebinding.yaml +++ /dev/null @@ -1,37 +0,0 @@ -{{- if .Values.rbacEnable }} -kind: RoleBinding -apiVersion: rbac.authorization.k8s.io/v1 -metadata: - labels: - app: {{ template "cassandra-operator.name" . }} - chart: {{ .Chart.Name }}-{{ .Chart.Version }} - heritage: {{ .Release.Service }} - release: {{ .Release.Name }} - name: {{ template "cassandra-operator.name" . }} -subjects: -- kind: ServiceAccount - name: {{ template "cassandra-operator.name" . }} -roleRef: - kind: Role - name: {{ template "cassandra-operator.name" . }} - apiGroup: rbac.authorization.k8s.io -{{- range .Values.clusterServiceAccountsName }} ---- -kind: RoleBinding -apiVersion: rbac.authorization.k8s.io/v1 -metadata: - labels: - app: {{ template "cassandra-operator.name" $ }} - chart: {{ $.Chart.Name }}-{{ $.Chart.Version }} - heritage: {{ $.Release.Service }} - release: {{ $.Release.Name }} - name: {{ . }}-cluster-node -subjects: - - kind: ServiceAccount - name: {{ . }} -roleRef: - kind: Role - name: {{ template "cassandra-operator.name" $ }}-cluster-node - apiGroup: rbac.authorization.k8s.io -{{- end }} -{{- end }} diff --git a/data/casskop-operator/cassandra-operator/templates/service.yaml b/data/casskop-operator/cassandra-operator/templates/service.yaml deleted file mode 100644 index d296fedbc0..0000000000 --- a/data/casskop-operator/cassandra-operator/templates/service.yaml +++ /dev/null @@ -1,19 +0,0 @@ -{{- if .Values.metricService }} -apiVersion: v1 -kind: Service -metadata: - name: {{ template "cassandra-operator.name" . }}-metrics - labels: - component: app - app: {{ template "cassandra-operator.name" . }}-metrics - chart: {{ .Chart.Name }}-{{ .Chart.Version }} - heritage: {{ .Release.Service }} - release: {{ .Release.Name }} -spec: - selector: - app: {{ template "cassandra-operator.name" . }} - ports: - - name: metrics - port: 8383 - protocol: TCP -{{- end }} diff --git a/data/casskop-operator/cassandra-operator/templates/service_account.yaml b/data/casskop-operator/cassandra-operator/templates/service_account.yaml deleted file mode 100644 index ca640e21ec..0000000000 --- a/data/casskop-operator/cassandra-operator/templates/service_account.yaml +++ /dev/null @@ -1,21 +0,0 @@ -apiVersion: v1 -kind: ServiceAccount -metadata: - labels: - app: {{ template "cassandra-operator.name" . }} - chart: {{ .Chart.Name }}-{{ .Chart.Version }} - heritage: {{ .Release.Service }} - release: {{ .Release.Name }} - name: {{ template "cassandra-operator.name" . }} -{{- range .Values.clusterServiceAccountsName }} ---- -apiVersion: v1 -kind: ServiceAccount -metadata: - labels: - app: {{ template "cassandra-operator.name" $ }} - chart: {{ $.Chart.Name }}-{{ $.Chart.Version }} - heritage: {{ $.Release.Service }} - release: {{ $.Release.Name }} - name: {{ . }} -{{- end }} diff --git a/data/casskop-operator/cassandra-operator/values.yaml b/data/casskop-operator/cassandra-operator/values.yaml deleted file mode 100644 index a961d2d3f3..0000000000 --- a/data/casskop-operator/cassandra-operator/values.yaml +++ /dev/null @@ -1,48 +0,0 @@ -## Cassandra Operator Image -## -image: - repository: orangeopensource/casskop - tag: v2.1.0-release - pullPolicy: Always - imagePullSecrets: - enabled: false -# name: - -## Prometheus-operator resource limits & requests -## Ref: https://kubernetes.io/docs/user-guide/compute-resources/ -resources: - requests: - cpu: 10m - memory: 50Mi - limits: - cpu: 1 - memory: 512Mi - -readinessProbe: - timeouts: - initialDelaySeconds: 4 - periodSeconds: 10 - failureThreshold: 1 -livenessProbe: - timeouts: - initialDelaySeconds: 4 - periodSeconds: 10 - failureThreshold: 1 - -## If true, create & deploy the CRD -## -createCustomResource: true - -## If true, create & use RBAC resources -## -rbacEnable: true - -## if true deploy service for metrics access -metricService: false - -debug: - enabled: false - -## -clusterServiceAccountsName: - - cassandra-cluster-node diff --git a/data/casskop-operator/cr.yaml b/data/casskop-operator/cr.yaml deleted file mode 100644 index c873696d35..0000000000 --- a/data/casskop-operator/cr.yaml +++ /dev/null @@ -1,37 +0,0 @@ -apiVersion: "db.orange.com/v2" -kind: "CassandraCluster" -metadata: - name: cassandra-demo - labels: - cluster: k8s.kaas -spec: - cassandraImage: cassandra:3.11 - bootstrapImage: orangeopensource/cassandra-bootstrap:0.1.8 - configMapName: cassandra-configmap-v1 - dataCapacity: "200Mi" - dataStorageClass: local-path - imagepullpolicy: IfNotPresent - hardAntiAffinity: false # Do we ensure only 1 cassandra on each node ? - deletePVC: true - autoPilot: false - config: - jvm-options: - log_gc: "true" - autoUpdateSeedList: false - maxPodUnavailable: 1 - runAsUser: 999 - resources: - requests: - cpu: '1' - memory: 2Gi - limits: - cpu: '1' - memory: 2Gi - topology: - dc: - - name: dc1 - nodesPerRacks: 1 - rack: - - name: rack1 - - name: rack2 - - name: rack3 \ No newline at end of file diff --git a/data/casskop-operator/init.yaml b/data/casskop-operator/init.yaml deleted file mode 100644 index fb3672ab2c..0000000000 --- a/data/casskop-operator/init.yaml +++ /dev/null @@ -1,20 +0,0 @@ -apiVersion: v1 -kind: ConfigMap -metadata: - name: cassandra-configmap-v1 -data: - - pre_run.sh: |- - echo " ** this is pre_run.sh script executed before run.sh **" - #Examples: - echo "Change default Authenticator & Authorizer" - sed -ri 's/(authenticator:).*/\1 PasswordAuthenticator/' /etc/cassandra/cassandra.yaml - sed -ri 's/(authorizer:).*/\1 CassandraAuthorizer/' /etc/cassandra/cassandra.yaml - #test "$(hostname)" == 'cassandra-demo-dc1-rack2-0' && echo "update param" && sed -i 's/windows_timer_interval: 1/windows_timer_interval: 2/' /etc/cassandra/cassandra.yaml - #test "$(hostname)" == 'cassandra-demo-dc1-rack3-0' && echo "-Dcassandra.replace_address_first_boot=172.31.183.209" > /etc/cassandra/jvm.options - #test "$(hostname)" == 'cassandra-demo-dc2-rack1-0' && echo "-Dcassandra.override_decommission=true" > /etc/cassandra/jvm.options - echo " ** end of pre_run.sh script, continue with run.sh **" - - post_run.sh: |- - echo "Check Configured seeds by bootstrap" - grep "seeds:" /etc/cassandra/cassandra.yaml diff --git a/data/percona-server-mongodb-operator/config.json b/data/percona-server-mongodb-operator/config.json index fd1de91834..1da347fe8c 100644 --- a/data/percona-server-mongodb-operator/config.json +++ b/data/percona-server-mongodb-operator/config.json @@ -1,6 +1,5 @@ { - "github_link": "https://github.com/percona/percona-server-mongodb-operator.git", - "commit": "54950f7e56cde893c4b36a061c6335598b84873d", + "deploy": { "method": "YAML", "file": "data/percona-server-mongodb-operator/cr.yaml", @@ -10,6 +9,8 @@ "custom_fields": "data.percona-server-mongodb-operator.prune", "seed_custom_resource": "data/percona-server-mongodb-operator/cr.yaml", "seedType": { + "github_link": "https://github.com/percona/percona-server-mongodb-operator.git", + "commit": "54950f7e56cde893c4b36a061c6335598b84873d", "type": "PerconaServerMongoDB", "package": "github.com/percona/percona-server-mongodb-operator/pkg/apis/psmdb/v1" } diff --git a/data/rabbitmq-operator/port.json b/data/rabbitmq-operator/port.json index 38745abb25..e838e6e71b 100644 --- a/data/rabbitmq-operator/port.json +++ b/data/rabbitmq-operator/port.json @@ -1,6 +1,4 @@ { - "github_link": "https://github.com/rabbitmq/cluster-operator.git", - "commit": "f2ab5cecca7fa4bbba62ba084bfa4ae1b25d15ff", "deploy": { "method": "YAML", "file": "data/rabbitmq-operator/operator.yaml", @@ -10,6 +8,8 @@ "custom_fields": "data.rabbitmq-operator.prune", "seed_custom_resource": "data/rabbitmq-operator/cr.yaml", "seedType": { + "github_link": "https://github.com/rabbitmq/cluster-operator.git", + "commit": "f2ab5cecca7fa4bbba62ba084bfa4ae1b25d15ff", "type": "RabbitmqCluster", "package": "github.com/rabbitmq/cluster-operator/api/v1beta1" } diff --git a/data/zookeeper-operator/config.json b/data/zookeeper-operator/config.json index fecc96c194..c5da89fdfa 100644 --- a/data/zookeeper-operator/config.json +++ b/data/zookeeper-operator/config.json @@ -1,6 +1,4 @@ { - "github_link": "https://github.com/pravega/zookeeper-operator.git", - "commit": "daac1bdeaace91e4c6e7b712afe7415b2c24df44", "deploy": { "method": "HELM", "file": "data/zookeeper-operator/zookeeper-operator", @@ -10,6 +8,8 @@ "custom_fields": "data.zookeeper-operator.prune", "seed_custom_resource": "data/zookeeper-operator/cr.yaml", "seedType": { + "github_link": "https://github.com/pravega/zookeeper-operator.git", + "commit": "daac1bdeaace91e4c6e7b712afe7415b2c24df44", "type": "ZookeeperCluster", "package": "github.com/pravega/zookeeper-operator/api/v1beta1" }