diff --git a/content/docs/v2024.8.21/guides/druid/quickstart/overview/index.md b/content/docs/v2024.8.21/guides/druid/quickstart/overview/index.md index 592833acc6..01be64278d 100644 --- a/content/docs/v2024.8.21/guides/druid/quickstart/overview/index.md +++ b/content/docs/v2024.8.21/guides/druid/quickstart/overview/index.md @@ -135,9 +135,9 @@ You can also use options like **Amazon S3**, **Google Cloud Storage**, **Azure B Druid uses the metadata store to house various metadata about the system, but not to store the actual data. The metadata store retains all metadata essential for a Druid cluster to work. **Apache Derby** is the default metadata store for Druid, however, it is not suitable for production. **MySQL** and **PostgreSQL** are more production suitable metadata stores. -Luckily, **PostgreSQL** and **MySQL** both are readily available in KubeDB as CRD and KubeDB operator will automatically create a **MySQL** cluster and create a database in it named `druid` by default. +Luckily, **PostgreSQL** and **MySQL** both are readily available in KubeDB as CRD and **KubeDB** operator will automatically create a **MySQL** cluster and create a database in it named `druid` by default. -If you choose to use **PostgreSQL** as metadata storage, you can simply mention that in the `spec.metadataStorage.type` of the `Druid` CR and KubeDB operator will deploy a `PostgreSQL` cluster for druid to use. +If you choose to use **PostgreSQL** as metadata storage, you can simply mention that in the `spec.metadataStorage.type` of the `Druid` CR and KubeDB operator will deploy a `PostgreSQL` cluster for druid to use. [//]: # (In this tutorial, we will use a **MySQL** named `mysql-demo` in the `demo` namespace and create a database named `druid` inside it using [initialization script](/docs/guides/mysql/initialization/#prepare-initialization-scripts).) @@ -146,8 +146,6 @@ If you choose to use **PostgreSQL** as metadata storage, you can simply mention [//]: # () [//]: # (```bash) -[//]: # ($ kubectl create configmap -n demo my-init-script \) - [//]: # (--from-literal=init.sql="$(curl -fsSL https://github.com/kubedb/docs/raw/{{< param "info.version" >}}/docs/examples/druid/quickstart/mysql-init-script.sql)") [//]: # (configmap/my-init-script created) @@ -163,13 +161,7 @@ If you choose to use **PostgreSQL** as metadata storage, you can simply mention Apache Druid uses [Apache ZooKeeper](https://zookeeper.apache.org/) (ZK) for management of current cluster state i.e. internal service discovery, coordination, and leader election. -Fortunately, KubeDB also has support for **ZooKeeper** and can easily be deployed using the guide [here](/docs/v2024.8.21/guides/zookeeper/quickstart/quickstart) - -In this tutorial, we will create a ZooKeeper named `zk-demo` in the `demo` namespace. -```bash -$ kubectl create -f https://github.com/kubedb/docs/raw/{{< param "info.version" >}}/docs/examples/druid/quickstart/zk-demo.yaml -zookeeper.kubedb.com/zk-demo created -``` +Fortunately, KubeDB also has support for **ZooKeeper** and **KubeDB** operator will automatically create a **ZooKeeper** cluster for druid to use. ## Create a Druid Cluster diff --git a/content/docs/v2024.8.21/guides/elasticsearch/concepts/elasticsearch/index.md b/content/docs/v2024.8.21/guides/elasticsearch/concepts/elasticsearch/index.md index 115af34ca8..475111b620 100644 --- a/content/docs/v2024.8.21/guides/elasticsearch/concepts/elasticsearch/index.md +++ b/content/docs/v2024.8.21/guides/elasticsearch/concepts/elasticsearch/index.md @@ -344,13 +344,16 @@ Currently supported node types are - data: maxUnavailable: 1 replicas: 3 - resources: - limits: - cpu: 500m - memory: 1Gi - requests: - cpu: 500m - memory: 1Gi + podTemplate: + spec: + containers: + - name: "elasticsearch" + resources: + requests: + cpu: "500m" + limits: + cpu: "600m" + memory: "1.5Gi" storage: accessModes: - ReadWriteOnce @@ -362,13 +365,16 @@ Currently supported node types are - ingest: maxUnavailable: 1 replicas: 3 - resources: - limits: - cpu: 500m - memory: 1Gi - requests: - cpu: 500m - memory: 1Gi + podTemplate: + spec: + containers: + - name: "elasticsearch" + resources: + requests: + cpu: "500m" + limits: + cpu: "600m" + memory: "1.5Gi" storage: accessModes: - ReadWriteOnce @@ -380,13 +386,17 @@ Currently supported node types are - master: maxUnavailable: 1 replicas: 2 - resources: - limits: - cpu: 500m - memory: 1Gi - requests: - cpu: 500m - memory: 1Gi + podTemplate: + spec: + containers: + - name: "elasticsearch" + resources: + limits: + cpu: 500m + memory: 1Gi + requests: + cpu: 500m + memory: 1Gi storage: accessModes: - ReadWriteOnce @@ -729,9 +739,9 @@ KubeDB accept following fields to set in `spec.podTemplate:` - annotations (petset's annotation) - labels (petset's labels) - spec: - - args - - env - - resources + - containers + - volumes + - podPlacementPolicy - initContainers - imagePullSecrets - nodeSelector @@ -746,24 +756,24 @@ KubeDB accept following fields to set in `spec.podTemplate:` - readinessProbe - lifecycle -You can checkout the full list [here](https://github.com/kmodules/offshoot-api/blob/ea366935d5bad69d7643906c7556923271592513/api/v1/types.go#L42-L259). Uses of some field of `spec.podTemplate` is described below, +You can check out the full list [here](https://github.com/kmodules/offshoot-api/blob/master/api/v2/types.go#L26C1-L279C1). Uses of some fields of `spec.podTemplate` are described below, -#### spec.podTemplate.spec.env -`spec.podTemplate.spec.env` is an `optional` field that specifies the environment variables to pass to the Elasticsearch Docker image. -You are not allowed to pass the following `env`: -- `node.name` -- `node.ingest` -- `node.master` -- `node.data` +#### spec.podTemplate.spec.tolerations +The `spec.podTemplate.spec.tolerations` is an optional field. This can be used to specify the pod's tolerations. + +#### spec.podTemplate.spec.volumes + +The `spec.podTemplate.spec.volumes` is an optional field. This can be used to provide the list of volumes that can be mounted by containers belonging to the pod. + +#### spec.podTemplate.spec.podPlacementPolicy + +`spec.podTemplate.spec.podPlacementPolicy` is an optional field. This can be used to provide the reference of the podPlacementPolicy. This will be used by our Petset controller to place the db pods throughout the region, zone & nodes according to the policy. It utilizes kubernetes affinity & podTopologySpreadContraints feature to do so. -```ini -Error from server (Forbidden): error when creating "./elasticsearch.yaml": admission webhook "elasticsearch.validators.kubedb.com" denied the request: environment variable node.name is forbidden to use in Elasticsearch spec -``` #### spec.podTemplate.spec.imagePullSecrets @@ -790,23 +800,52 @@ spec: serviceAccountName: es ``` -#### spec.podTemplate.spec.resources +#### spec.podTemplate.spec.containers + +The `spec.podTemplate.spec.containers` can be used to provide the list containers and their configurations for to the database pod. some of the fields are described below, + +##### spec.podTemplate.spec.containers[].name +The `spec.podTemplate.spec.containers[].name` field used to specify the name of the container specified as a DNS_LABEL. Each container in a pod must have a unique name (DNS_LABEL). Cannot be updated. + +##### spec.podTemplate.spec.containers[].args +`spec.podTemplate.spec.containers[].args` is an optional field. This can be used to provide additional arguments to database installation. + +##### spec.podTemplate.spec.containers[].env + +`spec.podTemplate.spec.env` is an `optional` field that specifies the environment variables to pass to the Elasticsearch Containers. + +You are not allowed to pass the following `env`: +- `node.name` +- `node.ingest` +- `node.master` +- `node.data` + + +```ini +Error from server (Forbidden): error when creating "./elasticsearch.yaml": admission webhook "elasticsearch.validators.kubedb.com" denied the request: environment variable node.name is forbidden to use in Elasticsearch spec +``` + +##### spec.podTemplate.spec.containers[].resources -`spec.podTemplate.spec.resources` is an `optional` field. If the `spec.topology` field is not set, then it can be used to request or limit computational resources required by the database pods. To learn more, visit [here](http://kubernetes.io/docs/user-guide/compute-resources/). +`spec.podTemplate.spec.containers[].resources` is an `optional` field. then it can be used to request or limit computational resources required by the database pods. To learn more, visit [here](http://kubernetes.io/docs/user-guide/compute-resources/). ```yaml spec: podTemplate: spec: - resources: - limits: - cpu: "1" - memory: 1Gi - requests: - cpu: 500m - memory: 512Mi + containers: + - name: "elasticsearch" + resources: + limits: + cpu: 500m + memory: 1Gi + requests: + cpu: 500m + memory: 1Gi ``` + + ### spec.serviceTemplates `spec.serviceTemplates` is an `optional` field that contains a list of the serviceTemplate. The templates are identified by the `alias`. For Elasticsearch, the configurable services' `alias` are `primary` and `stats`. diff --git a/content/docs/v2024.8.21/guides/kafka/concepts/kafka.md b/content/docs/v2024.8.21/guides/kafka/concepts/kafka.md index fc62a47b54..02834f60c2 100644 --- a/content/docs/v2024.8.21/guides/kafka/concepts/kafka.md +++ b/content/docs/v2024.8.21/guides/kafka/concepts/kafka.md @@ -34,7 +34,7 @@ info: As with all other Kubernetes objects, a Kafka needs `apiVersion`, `kind`, and `metadata` fields. It also needs a `.spec` section. Below is an example Kafka object. ```yaml -apiVersion: kubedb.com/v1alpha2 +apiVersion: kubedb.com/v1 kind: Kafka metadata: name: kafka @@ -76,37 +76,37 @@ spec: name: kafka-ca-issuer topology: broker: - replicas: 3 - resources: - limits: - memory: 1Gi - requests: - cpu: 500m - memory: 1Gi + podTemplate: + spec: + containers: + - name: kafka + resources: + requests: + cpu: 500m + memory: 1024Mi + limits: + cpu: 700m + memory: 2Gi storage: accessModes: - ReadWriteOnce resources: requests: - storage: 1Gi + storage: 10Gi storageClassName: standard - suffix: broker controller: - replicas: 3 - resources: - limits: - memory: 1Gi - requests: - cpu: 500m - memory: 1Gi - storage: - accessModes: - - ReadWriteOnce - resources: - requests: - storage: 1Gi - storageClassName: standard - suffix: controller + replicas: 1 + podTemplate: + spec: + containers: + - name: kafka + resources: + requests: + cpu: 500m + memory: 1024Mi + limits: + cpu: 700m + memory: 2Gi monitor: agent: prometheus.io/operator prometheus: @@ -328,7 +328,9 @@ KubeDB accept following fields to set in `spec.podTemplate:` - annotations (petset's annotation) - labels (petset's labels) - spec: - - resources + - containers + - volumes + - podPlacementPolicy - initContainers - containers - imagePullSecrets @@ -344,17 +346,26 @@ KubeDB accept following fields to set in `spec.podTemplate:` - readinessProbe - lifecycle -You can check out the full list [here](https://github.com/kmodules/offshoot-api/blob/39bf8b2/api/v2/types.go#L44-L279). Uses of some field of `spec.podTemplate` is described below, +You can check out the full list [here](https://github.com/kmodules/offshoot-api/blob/master/api/v2/types.go#L26C1-L279C1). +Uses of some field of `spec.podTemplate` is described below, NB. If `spec.topology` is set, then `spec.podTemplate` needs to be empty. Instead use `spec.topology..podTemplate` -#### spec.podTemplate.spec.nodeSelector +#### spec.podTemplate.spec.tolerations -`spec.podTemplate.spec.nodeSelector` is an optional field that specifies a map of key-value pairs. For the pod to be eligible to run on a node, the node must have each of the indicated key-value pairs as labels (it can have additional labels as well). To learn more, see [here](https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#nodeselector) . +The `spec.podTemplate.spec.tolerations` is an optional field. This can be used to specify the pod's tolerations. + +#### spec.podTemplate.spec.volumes + +The `spec.podTemplate.spec.volumes` is an optional field. This can be used to provide the list of volumes that can be mounted by containers belonging to the pod. + +#### spec.podTemplate.spec.podPlacementPolicy -#### spec.podTemplate.spec.resources +`spec.podTemplate.spec.podPlacementPolicy` is an optional field. This can be used to provide the reference of the podPlacementPolicy. This will be used by our Petset controller to place the db pods throughout the region, zone & nodes according to the policy. It utilizes kubernetes affinity & podTopologySpreadContraints feature to do so. -`spec.podTemplate.spec.resources` is an optional field. This can be used to request compute resources required by the database pods. To learn more, visit [here](http://kubernetes.io/docs/user-guide/compute-resources/). +#### spec.podTemplate.spec.nodeSelector + +`spec.podTemplate.spec.nodeSelector` is an optional field that specifies a map of key-value pairs. For the pod to be eligible to run on a node, the node must have each of the indicated key-value pairs as labels (it can have additional labels as well). To learn more, see [here](https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#nodeselector) . ### spec.serviceTemplates @@ -379,6 +390,25 @@ KubeDB allows following fields to set in `spec.serviceTemplates`: See [here](https://github.com/kmodules/offshoot-api/blob/kubernetes-1.21.1/api/v1/types.go#L237) to understand these fields in detail. + +#### spec.podTemplate.spec.containers + +The `spec.podTemplate.spec.containers` can be used to provide the list containers and their configurations for to the database pod. some of the fields are described below, + +##### spec.podTemplate.spec.containers[].name +The `spec.podTemplate.spec.containers[].name` field used to specify the name of the container specified as a DNS_LABEL. Each container in a pod must have a unique name (DNS_LABEL). Cannot be updated. + +##### spec.podTemplate.spec.containers[].args +`spec.podTemplate.spec.containers[].args` is an optional field. This can be used to provide additional arguments to database installation. + +##### spec.podTemplate.spec.containers[].env + +`spec.podTemplate.spec.containers[].env` is an optional field that specifies the environment variables to pass to the Redis containers. + +##### spec.podTemplate.spec.containers[].resources + +`spec.podTemplate.spec.containers[].resources` is an optional field. This can be used to request compute resources required by containers of the database pods. To learn more, visit [here](http://kubernetes.io/docs/user-guide/compute-resources/). + ### spec.deletionPolicy `deletionPolicy` gives flexibility whether to `nullify`(reject) the delete operation of `Kafka` crd or which resources KubeDB should keep or delete when you delete `Kafka` crd. KubeDB provides following four deletion policies: diff --git a/content/docs/v2024.8.21/guides/mariadb/concepts/mariadb/index.md b/content/docs/v2024.8.21/guides/mariadb/concepts/mariadb/index.md index cbe515bce5..955e6500c6 100644 --- a/content/docs/v2024.8.21/guides/mariadb/concepts/mariadb/index.md +++ b/content/docs/v2024.8.21/guides/mariadb/concepts/mariadb/index.md @@ -242,9 +242,9 @@ KubeDB accepts the following fields to set in `spec.podTemplate:` - controller: - annotations (petset's annotation) - spec: - - args - - env - - resources + - containers + - volumes + - podPlacementPolicy - initContainers - imagePullSecrets - nodeSelector @@ -261,11 +261,36 @@ KubeDB accepts the following fields to set in `spec.podTemplate:` Uses of some field of `spec.podTemplate` is described below, -#### spec.podTemplate.spec.args +You can check out the full list [here](https://github.com/kmodules/offshoot-api/blob/master/api/v2/types.go#L26C1-L279C1). +Uses of some field of `spec.podTemplate` is described below, + +#### spec.podTemplate.spec.tolerations + +The `spec.podTemplate.spec.tolerations` is an optional field. This can be used to specify the pod's tolerations. + +#### spec.podTemplate.spec.volumes + +The `spec.podTemplate.spec.volumes` is an optional field. This can be used to provide the list of volumes that can be mounted by containers belonging to the pod. + +#### spec.podTemplate.spec.podPlacementPolicy + +`spec.podTemplate.spec.podPlacementPolicy` is an optional field. This can be used to provide the reference of the podPlacementPolicy. This will be used by our Petset controller to place the db pods throughout the region, zone & nodes according to the policy. It utilizes kubernetes affinity & podTopologySpreadContraints feature to do so. -`spec.podTemplate.spec.args` is an optional field. This can be used to provide additional arguments for database installation. To learn about available args of `mysqld`, visit [here](https://mariadb.com/kb/en/mysqld-options/). +#### spec.podTemplate.spec.containers -#### spec.podTemplate.spec.env +The `spec.podTemplate.spec.containers` can be used to provide the list containers and their configurations for to the database pod. some of the fields are described below, + +##### spec.podTemplate.spec.containers[].name +The `spec.podTemplate.spec.containers[].name` field used to specify the name of the container specified as a DNS_LABEL. Each container in a pod must have a unique name (DNS_LABEL). Cannot be updated. + +##### spec.podTemplate.spec.containers[].args +`spec.podTemplate.spec.containers[].args` is an optional field. This can be used to provide additional arguments to database installation. + +##### spec.podTemplate.spec.containers[].resources + +`spec.podTemplate.spec.containers[].resources` is an optional field. This can be used to request compute resources required by containers of the database pods. To learn more, visit [here](http://kubernetes.io/docs/user-guide/compute-resources/). + +##### spec.podTemplate.spec.containers[].env `spec.podTemplate.spec.env` is an optional field that specifies the environment variables to pass to the MariaDB docker image. To know about supported environment variables, please visit [here](https://hub.docker.com/_/mariadb/). @@ -314,10 +339,6 @@ for: "./mariadb.yaml": admission webhook "mariadb.validators.kubedb.com" denied If a service account name is given, and there's an existing service account by that name, the KubeDB operator will use that existing service account. Since this service account is not managed by KubeDB, users are responsible for providing necessary access permissions manually. -#### spec.podTemplate.spec.resources - -`spec.podTemplate.spec.resources` is an optional field. This can be used to request compute resources required by the database pods. To learn more, visit [here](http://kubernetes.io/docs/user-guide/compute-resources/). - ### spec.serviceTemplate You can also provide a template for the services created by KubeDB operator for MariaDB database through `spec.serviceTemplate`. This will allow you to set the type and other properties of the services. diff --git a/content/docs/v2024.8.21/guides/memcached/concepts/memcached.md b/content/docs/v2024.8.21/guides/memcached/concepts/memcached.md index b6f87e8a0f..f80425ea5e 100644 --- a/content/docs/v2024.8.21/guides/memcached/concepts/memcached.md +++ b/content/docs/v2024.8.21/guides/memcached/concepts/memcached.md @@ -126,9 +126,9 @@ KubeDB accept following fields to set in `spec.podTemplate:` - controller - annotations (petset's annotation) - spec: - - args - - env - - resources + - containers + - volumes + - podPlacementPolicy - initContainers - imagePullSecrets - nodeSelector @@ -145,13 +145,35 @@ KubeDB accept following fields to set in `spec.podTemplate:` Uses of some field of `spec.podTemplate` is described below, -#### spec.podTemplate.spec.args -`spec.podTemplate.spec.args` is an optional field. This can be used to provide additional arguments to database installation. +You can check out the full list [here](https://github.com/kmodules/offshoot-api/blob/master/api/v2/types.go#L26C1-L279C1). +Uses of some field of `spec.podTemplate` is described below, + +#### spec.podTemplate.spec.tolerations + +The `spec.podTemplate.spec.tolerations` is an optional field. This can be used to specify the pod's tolerations. + +#### spec.podTemplate.spec.volumes + +The `spec.podTemplate.spec.volumes` is an optional field. This can be used to provide the list of volumes that can be mounted by containers belonging to the pod. + +#### spec.podTemplate.spec.podPlacementPolicy + +`spec.podTemplate.spec.podPlacementPolicy` is an optional field. This can be used to provide the reference of the podPlacementPolicy. This will be used by our Petset controller to place the db pods throughout the region, zone & nodes according to the policy. It utilizes kubernetes affinity & podTopologySpreadContraints feature to do so. -#### spec.podTemplate.spec.env +#### spec.podTemplate.spec.containers -`spec.env` is an optional field that specifies the environment variables to pass to the Memcached docker image. +The `spec.podTemplate.spec.containers` can be used to provide the list containers and their configurations for to the database pod. some of the fields are described below, + +##### spec.podTemplate.spec.containers[].name +The `spec.podTemplate.spec.containers[].name` field used to specify the name of the container specified as a DNS_LABEL. Each container in a pod must have a unique name (DNS_LABEL). Cannot be updated. + +##### spec.podTemplate.spec.containers[].args +`spec.podTemplate.spec.containers[].args` is an optional field. This can be used to provide additional arguments to database installation. + +##### spec.podTemplate.spec.containers[].env + +`.env` is an optional field that specifies the environment variables to pass to the Memcached containers. Note that, KubeDB does not allow to update the environment variables. If you try to update environment variables, KubeDB operator will reject the request with following error, @@ -169,6 +191,10 @@ At least one of the following was changed: spec.podTemplate.spec.env ``` +##### spec.podTemplate.spec.containers[].resources + +`spec.podTemplate.spec.containers[].resources` is an optional field. This can be used to request compute resources required by containers of the database pods. To learn more, visit [here](http://kubernetes.io/docs/user-guide/compute-resources/). + #### spec.podTemplate.spec.imagePullSecrets `KubeDB` provides the flexibility of deploying Memcached server from a private Docker registry. To learn how to deploym Memcached from a private registry, please visit [here](/docs/v2024.8.21/guides/memcached/private-registry/using-private-registry). diff --git a/content/docs/v2024.8.21/guides/mongodb/concepts/mongodb.md b/content/docs/v2024.8.21/guides/mongodb/concepts/mongodb.md index fe6c9f2fe3..4499d6d8e5 100644 --- a/content/docs/v2024.8.21/guides/mongodb/concepts/mongodb.md +++ b/content/docs/v2024.8.21/guides/mongodb/concepts/mongodb.md @@ -486,9 +486,9 @@ KubeDB accept following fields to set in `spec.podTemplate:` - annotations (petset's annotation) - labels (petset's labels) - spec: - - args - - env - - resources + - containers + - volumes + - podPlacementPolicy - initContainers - imagePullSecrets - nodeSelector @@ -503,17 +503,39 @@ KubeDB accept following fields to set in `spec.podTemplate:` - readinessProbe - lifecycle -You can checkout the full list [here](https://github.com/kmodules/offshoot-api/blob/ea366935d5bad69d7643906c7556923271592513/api/v1/types.go#L42-L259). Uses of some field of `spec.podTemplate` is described below, +You can check out the full list [here](https://github.com/kmodules/offshoot-api/blob/master/api/v2/types.go#L26C1-L279C1). +Uses of some field of `spec.podTemplate` is described below, NB. If `spec.shardTopology` is set, then `spec.podTemplate` needs to be empty. Instead use `spec.shardTopology..podTemplate` -#### spec.podTemplate.spec.args +#### spec.podTemplate.spec.tolerations -`spec.podTemplate.spec.args` is an optional field. This can be used to provide additional arguments to database installation. To learn about available args of `mongod`, visit [here](https://docs.mongodb.com/manual/reference/program/mongod/). +The `spec.podTemplate.spec.tolerations` is an optional field. This can be used to specify the pod's tolerations. -#### spec.podTemplate.spec.env +#### spec.podTemplate.spec.volumes -`spec.podTemplate.spec.env` is an optional field that specifies the environment variables to pass to the MongoDB docker image. To know about supported environment variables, please visit [here](https://hub.docker.com/r/_/mongo/). +The `spec.podTemplate.spec.volumes` is an optional field. This can be used to provide the list of volumes that can be mounted by containers belonging to the pod. + +#### spec.podTemplate.spec.podPlacementPolicy + +`spec.podTemplate.spec.podPlacementPolicy` is an optional field. This can be used to provide the reference of the podPlacementPolicy. This will be used by our Petset controller to place the db pods throughout the region, zone & nodes according to the policy. It utilizes kubernetes affinity & podTopologySpreadContraints feature to do so. + + + + +#### spec.podTemplate.spec.containers + +The `spec.podTemplate.spec.containers` can be used to provide the list containers and their configurations for to the database pod. some of the fields are described below, + +##### spec.podTemplate.spec.containers[].name +The `spec.podTemplate.spec.containers[].name` field used to specify the name of the container specified as a DNS_LABEL. Each container in a pod must have a unique name (DNS_LABEL). Cannot be updated. + +##### spec.podTemplate.spec.containers[].args +`spec.podTemplate.spec.containers[].args` is an optional field. This can be used to provide additional arguments to database installation. + +##### spec.podTemplate.spec.containers[].env + +`spec.podTemplate.spec.containers[].env` is an optional field that specifies the environment variables to pass to the MongoDB docker image. To know about supported environment variables, please visit [here](https://hub.docker.com/r/_/mongo/). Note that, KubeDB does not allow `MONGO_INITDB_ROOT_USERNAME` and `MONGO_INITDB_ROOT_PASSWORD` environment variables to set in `spec.podTemplate.spec.env`. If you want to use custom superuser and password, please use `spec.authSecret` instead described earlier. @@ -543,6 +565,10 @@ for: "./mongodb.yaml": admission webhook "mongodb.validators.kubedb.com" denied spec.podTemplate.spec.env ``` +##### spec.podTemplate.spec.containers[].resources + +`spec.podTemplate.spec.containers[].resources` is an optional field. This can be used to request compute resources required by containers of the database pods. To learn more, visit [here](http://kubernetes.io/docs/user-guide/compute-resources/). + #### spec.podTemplate.spec.imagePullSecret `KubeDB` provides the flexibility of deploying MongoDB database from a private Docker registry. `spec.podTemplate.spec.imagePullSecrets` is an optional field that points to secrets to be used for pulling docker image if you are using a private docker registry. To learn how to deploy MongoDB from a private registry, please visit [here](/docs/v2024.8.21/guides/mongodb/private-registry/using-private-registry). @@ -561,10 +587,6 @@ If a service account name is given, but there's no existing service account by t If a service account name is given, and there's an existing service account by that name, the KubeDB operator will use that existing service account. Since this service account is not managed by KubeDB, users are responsible for providing necessary access permissions manually. Follow the guide [here](/docs/v2024.8.21/guides/mongodb/custom-rbac/using-custom-rbac) to grant necessary permissions in this scenario. -#### spec.podTemplate.spec.resources - -`spec.podTemplate.spec.resources` is an optional field. This can be used to request compute resources required by the database pods. To learn more, visit [here](http://kubernetes.io/docs/user-guide/compute-resources/). - ### spec.serviceTemplates You can also provide template for the services created by KubeDB operator for MongoDB database through `spec.serviceTemplates`. This will allow you to set the type and other properties of the services. diff --git a/content/docs/v2024.8.21/guides/mysql/concepts/database/index.md b/content/docs/v2024.8.21/guides/mysql/concepts/database/index.md index 7e1056ed51..c00b3c9ecc 100644 --- a/content/docs/v2024.8.21/guides/mysql/concepts/database/index.md +++ b/content/docs/v2024.8.21/guides/mysql/concepts/database/index.md @@ -280,9 +280,9 @@ KubeDB accepts the following fields to set in `spec.podTemplate:` - controller: - annotations (petset's annotation) - spec: - - args - - env - - resources + - containers + - volumes + - podPlacementPolicy - initContainers - imagePullSecrets - nodeSelector @@ -297,15 +297,37 @@ KubeDB accepts the following fields to set in `spec.podTemplate:` - readinessProbe - lifecycle +You can check out the full list [here](https://github.com/kmodules/offshoot-api/blob/master/api/v2/types.go#L26C1-L279C1). Uses of some field of `spec.podTemplate` is described below, -#### spec.podTemplate.spec.args +#### spec.podTemplate.spec.tolerations -`spec.podTemplate.spec.args` is an optional field. This can be used to provide additional arguments for database installation. To learn about available args of `mysqld`, visit [here](https://dev.mysql.com/doc/refman/8.0/en/server-options.html). +The `spec.podTemplate.spec.tolerations` is an optional field. This can be used to specify the pod's tolerations. -#### spec.podTemplate.spec.env +#### spec.podTemplate.spec.volumes -`spec.podTemplate.spec.env` is an optional field that specifies the environment variables to pass to the MySQL docker image. To know about supported environment variables, please visit [here](https://hub.docker.com/_/mysql/). +The `spec.podTemplate.spec.volumes` is an optional field. This can be used to provide the list of volumes that can be mounted by containers belonging to the pod. + +#### spec.podTemplate.spec.podPlacementPolicy + +`spec.podTemplate.spec.podPlacementPolicy` is an optional field. This can be used to provide the reference of the podPlacementPolicy. This will be used by our Petset controller to place the db pods throughout the region, zone & nodes according to the policy. It utilizes kubernetes affinity & podTopologySpreadContraints feature to do so. + + + + +#### spec.podTemplate.spec.containers + +The `spec.podTemplate.spec.containers` can be used to provide the list containers and their configurations for to the database pod. some of the fields are described below, + +##### spec.podTemplate.spec.containers[].name +The `spec.podTemplate.spec.containers[].name` field used to specify the name of the container specified as a DNS_LABEL. Each container in a pod must have a unique name (DNS_LABEL). Cannot be updated. + +##### spec.podTemplate.spec.containers[].args +`spec.podTemplate.spec.containers[].args` is an optional field. This can be used to provide additional arguments to database installation. + +##### spec.podTemplate.spec.containers[].env + +`spec.podTemplate.spec.containers[].env` is an optional field that specifies the environment variables to pass to the MySQL docker image. To know about supported environment variables, please visit [here](https://hub.docker.com/_/mysql/). Note that, KubeDB does not allow `MYSQL_ROOT_PASSWORD`, `MYSQL_ALLOW_EMPTY_PASSWORD`, `MYSQL_RANDOM_ROOT_PASSWORD`, and `MYSQL_ONETIME_PASSWORD` environment variables to set in `spec.env`. If you want to set the root password, please use `spec.authSecret` instead described earlier. @@ -334,6 +356,10 @@ for: "./mysql.yaml": admission webhook "mysql.validators.kubedb.com" denied the spec.podTemplate.spec.env ``` +##### spec.podTemplate.spec.containers[].resources + +`spec.podTemplate.spec.containers[].resources` is an optional field. This can be used to request compute resources required by containers of the database pods. To learn more, visit [here](http://kubernetes.io/docs/user-guide/compute-resources/). + #### spec.podTemplate.spec.imagePullSecrets `KubeDB` provides the flexibility of deploying MySQL database from a private Docker registry. `spec.podTemplate.spec.imagePullSecrets` is an optional field that points to secrets to be used for pulling docker image if you are using a private docker registry. To learn how to deploy MySQL from a private registry, please visit [here](/docs/v2024.8.21/guides/mysql/private-registry/). @@ -352,10 +378,6 @@ for: "./mysql.yaml": admission webhook "mysql.validators.kubedb.com" denied the If a service account name is given, and there's an existing service account by that name, the KubeDB operator will use that existing service account. Since this service account is not managed by KubeDB, users are responsible for providing necessary access permissions manually. Follow the guide [here](/docs/v2024.8.21/guides/mysql/custom-rbac/) to grant necessary permissions in this scenario. -#### spec.podTemplate.spec.resources - -`spec.podTemplate.spec.resources` is an optional field. This can be used to request compute resources required by the database pods. To learn more, visit [here](http://kubernetes.io/docs/user-guide/compute-resources/). - ### spec.serviceTemplate You can also provide a template for the services created by KubeDB operator for MySQL database through `spec.serviceTemplate`. This will allow you to set the type and other properties of the services. @@ -381,9 +403,7 @@ See [here](https://github.com/kmodules/offshoot-api/blob/kubernetes-1.16.3/api/v `spec.halted` is an optional field. This field will be used to halt the kubeDB operator. When you set `spec.halted` to `true`, the KubeDB operator doesn't perform any operation on `MySQL` object. -### spec.halted - -`spec.halted` is an optional field. Suppose you want to delete the `MySQL` resources(`PetSet`, `Service` etc.) except `MySQL` object, `PVCs` and `Secret` then you need to set `spec.halted` to `true`. If you set `spec.halted` to `true` then the `deletionPolicy` in `MySQL` object will be set `Halt` by-default. +Suppose you want to delete the `MySQL` resources(`PetSet`, `Service` etc.) except `MySQL` object, `PVCs` and `Secret` then you need to set `spec.halted` to `true`. If you set `spec.halted` to `true` then the `deletionPolicy` in `MySQL` object will be set `Halt` by-default. ### spec.deletionPolicy diff --git a/content/docs/v2024.8.21/guides/percona-xtradb/concepts/perconaxtradb/index.md b/content/docs/v2024.8.21/guides/percona-xtradb/concepts/perconaxtradb/index.md index 249b273cdc..8220dae0e5 100644 --- a/content/docs/v2024.8.21/guides/percona-xtradb/concepts/perconaxtradb/index.md +++ b/content/docs/v2024.8.21/guides/percona-xtradb/concepts/perconaxtradb/index.md @@ -213,9 +213,9 @@ KubeDB accepts the following fields to set in `spec.podTemplate:` - controller: - annotations (petset's annotation) - spec: - - args - - env - - resources + - containers + - volumes + - podPlacementPolicy - initContainers - imagePullSecrets - nodeSelector @@ -232,13 +232,35 @@ KubeDB accepts the following fields to set in `spec.podTemplate:` Uses of some field of `spec.podTemplate` is described below, -#### spec.podTemplate.spec.args -`spec.podTemplate.spec.args` is an optional field. This can be used to provide additional arguments for database installation. +You can check out the full list [here](https://github.com/kmodules/offshoot-api/blob/master/api/v2/types.go#L26C1-L279C1). +Uses of some field of `spec.podTemplate` is described below, + +#### spec.podTemplate.spec.tolerations + +The `spec.podTemplate.spec.tolerations` is an optional field. This can be used to specify the pod's tolerations. + +#### spec.podTemplate.spec.volumes + +The `spec.podTemplate.spec.volumes` is an optional field. This can be used to provide the list of volumes that can be mounted by containers belonging to the pod. + +#### spec.podTemplate.spec.podPlacementPolicy + +`spec.podTemplate.spec.podPlacementPolicy` is an optional field. This can be used to provide the reference of the podPlacementPolicy. This will be used by our Petset controller to place the db pods throughout the region, zone & nodes according to the policy. It utilizes kubernetes affinity & podTopologySpreadContraints feature to do so. + +#### spec.podTemplate.spec.containers -#### spec.podTemplate.spec.env +The `spec.podTemplate.spec.containers` can be used to provide the list containers and their configurations for to the database pod. some of the fields are described below, -`spec.podTemplate.spec.env` is an optional field that specifies the environment variables to pass to the PerconaXtraDB docker image. To know about supported environment variables, please visit [here](https://hub.docker.com/_/perconaxtradb/). +##### spec.podTemplate.spec.containers[].name +The `spec.podTemplate.spec.containers[].name` field used to specify the name of the container specified as a DNS_LABEL. Each container in a pod must have a unique name (DNS_LABEL). Cannot be updated. + +##### spec.podTemplate.spec.containers[].args +`spec.podTemplate.spec.containers[].args` is an optional field. This can be used to provide additional arguments to database installation. + +##### spec.podTemplate.spec.containers[].env + +`spec.podTemplate.spec.containers[].env` is an optional field that specifies the environment variables to pass to the PerconaXtraDB docker image. To know about supported environment variables, please visit [here](https://hub.docker.com/_/perconaxtradb/). Note that, KubeDB does not allow `MYSQL_ROOT_PASSWORD`, `MYSQL_ALLOW_EMPTY_PASSWORD`, `MYSQL_RANDOM_ROOT_PASSWORD`, and `MYSQL_ONETIME_PASSWORD` environment variables to set in `spec.env`. If you want to set the root password, please use `spec.authSecret` instead described earlier. @@ -267,6 +289,10 @@ for: "./perconaxtradb.yaml": admission webhook "perconaxtradb.validators.kubedb. spec.podTemplate.spec.env ``` +##### spec.podTemplate.spec.containers[].resources + +`spec.podTemplate.spec.containers[].resources` is an optional field. This can be used to request compute resources required by containers of the database pods. To learn more, visit [here](http://kubernetes.io/docs/user-guide/compute-resources/). + #### spec.podTemplate.spec.imagePullSecrets `KubeDB` provides the flexibility of deploying PerconaXtraDB database from a private Docker registry. `spec.podTemplate.spec.imagePullSecrets` is an optional field that points to secrets to be used for pulling docker image if you are using a private docker registry. @@ -285,10 +311,6 @@ for: "./perconaxtradb.yaml": admission webhook "perconaxtradb.validators.kubedb. If a service account name is given, and there's an existing service account by that name, the KubeDB operator will use that existing service account. Since this service account is not managed by KubeDB, users are responsible for providing necessary access permissions manually. -#### spec.podTemplate.spec.resources - -`spec.podTemplate.spec.resources` is an optional field. This can be used to request compute resources required by the database pods. To learn more, visit [here](http://kubernetes.io/docs/user-guide/compute-resources/). - ### spec.serviceTemplate You can also provide a template for the services created by KubeDB operator for PerconaXtraDB database through `spec.serviceTemplate`. This will allow you to set the type and other properties of the services. diff --git a/content/docs/v2024.8.21/guides/pgbouncer/concepts/pgbouncer.md b/content/docs/v2024.8.21/guides/pgbouncer/concepts/pgbouncer.md index ada87248ba..d229ebe63d 100644 --- a/content/docs/v2024.8.21/guides/pgbouncer/concepts/pgbouncer.md +++ b/content/docs/v2024.8.21/guides/pgbouncer/concepts/pgbouncer.md @@ -164,8 +164,9 @@ KubeDB accept following fields to set in `spec.podTemplate:` - controller - annotations (petset's annotation) - spec: - - env - - resources + - containers + - volumes + - podPlacementPolicy - initContainers - imagePullSecrets - affinity @@ -174,11 +175,37 @@ KubeDB accept following fields to set in `spec.podTemplate:` - priority - lifecycle +You can check out the full list [here](https://github.com/kmodules/offshoot-api/blob/master/api/v2/types.go#L26C1-L279C1). Usage of some fields in `spec.podTemplate` is described below, -#### spec.podTemplate.spec.env +#### spec.podTemplate.spec.tolerations -`spec.podTemplate.spec.env` is an optional field that specifies the environment variables to pass to the PgBouncer docker image. To know about supported environment variables, please visit [here](https://hub.docker.com/kubedb/pgbouncer/). +The `spec.podTemplate.spec.tolerations` is an optional field. This can be used to specify the pod's tolerations. + +#### spec.podTemplate.spec.volumes + +The `spec.podTemplate.spec.volumes` is an optional field. This can be used to provide the list of volumes that can be mounted by containers belonging to the pod. + +#### spec.podTemplate.spec.podPlacementPolicy + +`spec.podTemplate.spec.podPlacementPolicy` is an optional field. This can be used to provide the reference of the podPlacementPolicy. This will be used by our Petset controller to place the db pods throughout the region, zone & nodes according to the policy. It utilizes kubernetes affinity & podTopologySpreadContraints feature to do so. + + + + +#### spec.podTemplate.spec.containers + +The `spec.podTemplate.spec.containers` can be used to provide the list containers and their configurations for to the database pod. some of the fields are described below, + +##### spec.podTemplate.spec.containers[].name +The `spec.podTemplate.spec.containers[].name` field used to specify the name of the container specified as a DNS_LABEL. Each container in a pod must have a unique name (DNS_LABEL). Cannot be updated. + +##### spec.podTemplate.spec.containers[].args +`spec.podTemplate.spec.containers[].args` is an optional field. This can be used to provide additional arguments to database installation. + +##### spec.podTemplate.spec.containers[].env + +`spec.podTemplate.spec.containers[].env` is an optional field that specifies the environment variables to pass to the PgBouncer containers. To know about supported environment variables, please visit [here](https://hub.docker.com/kubedb/pgbouncer/). Also, note that KubeDB does not allow updates to the environment variables as updating them does not have any effect once the server is created. If you try to update environment variables, KubeDB operator will reject the request with following error, @@ -195,6 +222,10 @@ At least one of the following was changed: spec.podTemplate.spec.nodeSelector ``` +##### spec.podTemplate.spec.containers[].resources + +`spec.podTemplate.spec.containers[].resources` is an optional field. This can be used to request compute resources required by containers of the database pods. To learn more, visit [here](http://kubernetes.io/docs/user-guide/compute-resources/). + #### spec.podTemplate.spec.imagePullSecrets `spec.podTemplate.spec.imagePullSecrets` is an optional field that points to secrets to be used for pulling docker image if you are using a private docker registry. For more details on how to use private docker registry, please visit [here](/docs/v2024.8.21/guides/pgbouncer/private-registry/using-private-registry). @@ -203,10 +234,6 @@ At least one of the following was changed: `spec.podTemplate.spec.nodeSelector` is an optional field that specifies a map of key-value pairs. For the pod to be eligible to run on a node, the node must have each of the indicated key-value pairs as labels (it can have additional labels as well). To learn more, see [here](https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#nodeselector) . -#### spec.podTemplate.spec.resources - -`spec.podTemplate.spec.resources` is an optional field. This can be used to request compute resources required by the database pods. To learn more, visit [here](http://kubernetes.io/docs/user-guide/compute-resources/). - ### spec.serviceTemplate KubeDB creates a service for each PgBouncer instance. The service has the same name as the `pgbouncer.name` and points to pgbouncer pods. diff --git a/content/docs/v2024.8.21/guides/postgres/concepts/postgres.md b/content/docs/v2024.8.21/guides/postgres/concepts/postgres.md index 30a546eed6..f4ed368365 100644 --- a/content/docs/v2024.8.21/guides/postgres/concepts/postgres.md +++ b/content/docs/v2024.8.21/guides/postgres/concepts/postgres.md @@ -282,9 +282,10 @@ KubeDB accept following fields to set in `spec.podTemplate:` - controller - annotations (petset's annotation) - spec: + - containers + - volumes + - podPlacementPolicy - serviceAccountName - - env - - resources - initContainers - imagePullSecrets - nodeSelector @@ -298,21 +299,37 @@ KubeDB accept following fields to set in `spec.podTemplate:` - readinessProbe - lifecycle +You can check out the full list [here](https://github.com/kmodules/offshoot-api/blob/master/api/v2/types.go#L26C1-L279C1). Uses of some field of `spec.podTemplate` is described below, -#### spec.podTemplate.spec.serviceAccountName +#### spec.podTemplate.spec.tolerations -`serviceAccountName` is an optional field supported by KubeDB Operator (version 0.13.0 and higher) that can be used to specify a custom service account to fine tune role based access control. +The `spec.podTemplate.spec.tolerations` is an optional field. This can be used to specify the pod's tolerations. -If this field is left empty, the KubeDB operator will create a service account name matching Postgres crd name. Role and RoleBinding that provide necessary access permissions will also be generated automatically for this service account. +#### spec.podTemplate.spec.volumes -If a service account name is given, but there's no existing service account by that name, the KubeDB operator will create one, and Role and RoleBinding that provide necessary access permissions will also be generated for this service account. +The `spec.podTemplate.spec.volumes` is an optional field. This can be used to provide the list of volumes that can be mounted by containers belonging to the pod. + +#### spec.podTemplate.spec.podPlacementPolicy + +`spec.podTemplate.spec.podPlacementPolicy` is an optional field. This can be used to provide the reference of the podPlacementPolicy. This will be used by our Petset controller to place the db pods throughout the region, zone & nodes according to the policy. It utilizes kubernetes affinity & podTopologySpreadContraints feature to do so. -If a service account name is given, and there's an existing service account by that name, the KubeDB operator will use that existing service account. Since this service account is not managed by KubeDB, users are responsible for providing necessary access permissions manually. Follow the guide [here](/docs/v2024.8.21/guides/postgres/custom-rbac/using-custom-rbac) to grant necessary permissions in this scenario. -#### spec.podTemplate.spec.env -`spec.podTemplate.spec.env` is an optional field that specifies the environment variables to pass to the Postgres docker image. To know about supported environment variables, please visit [here](https://hub.docker.com/_/postgres/). + +#### spec.podTemplate.spec.containers + +The `spec.podTemplate.spec.containers` can be used to provide the list containers and their configurations for to the database pod. some of the fields are described below, + +##### spec.podTemplate.spec.containers[].name +The `spec.podTemplate.spec.containers[].name` field used to specify the name of the container specified as a DNS_LABEL. Each container in a pod must have a unique name (DNS_LABEL). Cannot be updated. + +##### spec.podTemplate.spec.containers[].args +`spec.podTemplate.spec.containers[].args` is an optional field. This can be used to provide additional arguments to database installation. + +##### spec.podTemplate.spec.containers[].env + +`spec.podTemplate.spec.containers[].env` is an optional field that specifies the environment variables to pass to the Postgres docker image. To know about supported environment variables, please visit [here](https://hub.docker.com/_/postgres/). Note that, the KubeDB operator does not allow `POSTGRES_USER` and `POSTGRES_PASSWORD` environment variable to set in `spec.podTemplate.spec.env`. If you want to set the superuser _username_ and _password_, please use `spec.authSecret` instead described earlier. @@ -343,6 +360,20 @@ At least one of the following was changed: spec.init ``` +##### spec.podTemplate.spec.containers[].resources + +`spec.podTemplate.spec.containers[].resources` is an optional field. This can be used to request compute resources required by containers of the database pods. To learn more, visit [here](http://kubernetes.io/docs/user-guide/compute-resources/). + +#### spec.podTemplate.spec.serviceAccountName + +`serviceAccountName` is an optional field supported by KubeDB Operator (version 0.13.0 and higher) that can be used to specify a custom service account to fine tune role based access control. + +If this field is left empty, the KubeDB operator will create a service account name matching Postgres crd name. Role and RoleBinding that provide necessary access permissions will also be generated automatically for this service account. + +If a service account name is given, but there's no existing service account by that name, the KubeDB operator will create one, and Role and RoleBinding that provide necessary access permissions will also be generated for this service account. + +If a service account name is given, and there's an existing service account by that name, the KubeDB operator will use that existing service account. Since this service account is not managed by KubeDB, users are responsible for providing necessary access permissions manually. Follow the guide [here](/docs/v2024.8.21/guides/postgres/custom-rbac/using-custom-rbac) to grant necessary permissions in this scenario. + #### spec.podTemplate.spec.imagePullSecrets `spec.podTemplate.spec.imagePullSecrets` is an optional field that points to secrets to be used for pulling docker image if you are using a private docker registry. For more details on how to use private docker registry, please visit [here](/docs/v2024.8.21/guides/postgres/private-registry/using-private-registry). @@ -351,10 +382,6 @@ At least one of the following was changed: `spec.podTemplate.spec.nodeSelector` is an optional field that specifies a map of key-value pairs. For the pod to be eligible to run on a node, the node must have each of the indicated key-value pairs as labels (it can have additional labels as well). To learn more, see [here](https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#nodeselector) . -#### spec.podTemplate.spec.resources - -`spec.podTemplate.spec.resources` is an optional field. This can be used to request compute resources required by the database pods. To learn more, visit [here](http://kubernetes.io/docs/user-guide/compute-resources/). - ### spec.serviceTemplate KubeDB creates two different services for each Postgres instance. One of them is a master service named `` and points to the Postgres `Primary` pod/node. Another one is a replica service named `-replicas` and points to Postgres `replica` pods/nodes. diff --git a/content/docs/v2024.8.21/guides/proxysql/concepts/proxysql/index.md b/content/docs/v2024.8.21/guides/proxysql/concepts/proxysql/index.md index 0eea15dd67..e0c4d1c9d1 100644 --- a/content/docs/v2024.8.21/guides/proxysql/concepts/proxysql/index.md +++ b/content/docs/v2024.8.21/guides/proxysql/concepts/proxysql/index.md @@ -297,9 +297,9 @@ KubeDB accept following fields to set in `.spec.podTemplate`: - controller: - annotations (petset's annotation) - spec: - - args - - env - - resources + - containers + - volumes + - podPlacementPolicy - initContainers - imagePullSecrets - nodeSelector @@ -314,15 +314,42 @@ KubeDB accept following fields to set in `.spec.podTemplate`: - readinessProbe - lifecycle -Usage of some field of `.spec.podTemplate` is described below, +You can check out the full list [here](https://github.com/kmodules/offshoot-api/blob/master/api/v2/types.go#L26C1-L279C1). +Uses of some field of `spec.podTemplate` is described below, -#### .spec.podTemplate.spec.args +#### spec.podTemplate.spec.tolerations -`.spec.podTemplate.spec.args` is an optional field. This can be used to provide additional arguments to proxysql installation. +The `spec.podTemplate.spec.tolerations` is an optional field. This can be used to specify the pod's tolerations. -#### .spec.podTemplate.spec.env +#### spec.podTemplate.spec.volumes + +The `spec.podTemplate.spec.volumes` is an optional field. This can be used to provide the list of volumes that can be mounted by containers belonging to the pod. + +#### spec.podTemplate.spec.podPlacementPolicy + +`spec.podTemplate.spec.podPlacementPolicy` is an optional field. This can be used to provide the reference of the podPlacementPolicy. This will be used by our Petset controller to place the db pods throughout the region, zone & nodes according to the policy. It utilizes kubernetes affinity & podTopologySpreadContraints feature to do so. + + + + +#### spec.podTemplate.spec.containers + +The `spec.podTemplate.spec.containers` can be used to provide the list containers and their configurations for to the database pod. some of the fields are described below, + +##### spec.podTemplate.spec.containers[].name +The `spec.podTemplate.spec.containers[].name` field used to specify the name of the container specified as a DNS_LABEL. Each container in a pod must have a unique name (DNS_LABEL). Cannot be updated. + +##### spec.podTemplate.spec.containers[].args +`spec.podTemplate.spec.containers[].args` is an optional field. This can be used to provide additional arguments to database installation. + +##### spec.podTemplate.spec.containers[].env + +`spec.podTemplate.spec.containers[].env` is an optional field that specifies the environment variables to pass to the Redis containers. + +##### spec.podTemplate.spec.containers[].resources + +`spec.podTemplate.spec.containers[].resources` is an optional field. This can be used to request compute resources required by containers of the database pods. To learn more, visit [here](http://kubernetes.io/docs/user-guide/compute-resources/). -`.spec.podTemplate.spec.env` is an optional field that specifies the environment variables to pass to the ProxySQL docker image. Here is a list of currently supported environment variables to the ProxySQL image: #### .spec.podTemplate.spec.imagePullSecrets @@ -342,10 +369,6 @@ Usage of some field of `.spec.podTemplate` is described below, If a service account name is given, and there's an existing service account by that name, the KubeDB operator will use that existing service account. Since this service account is not managed by KubeDB, users are responsible for providing necessary access permissions manually. -#### .spec.podTemplate.spec.resources - -`.spec.podTemplate.spec.resources` is an optional field. This can be used to request compute resources required by the ProxySQL Pod. To learn more, visit [here](http://kubernetes.io/docs/user-guide/compute-resources/). - ### .spec.serviceTemplate You can also provide a template for the services created by KubeDB operator for the ProxySQL through `.spec.serviceTemplate`. This will allow you to set the type and other properties of the services. diff --git a/content/docs/v2024.8.21/guides/redis/concepts/redis.md b/content/docs/v2024.8.21/guides/redis/concepts/redis.md index 4b828ded43..14bc842ca3 100644 --- a/content/docs/v2024.8.21/guides/redis/concepts/redis.md +++ b/content/docs/v2024.8.21/guides/redis/concepts/redis.md @@ -139,10 +139,9 @@ AutoOps is an optional field to control the generation of version update & TLS-r `spec.version` is a required field specifying the name of the [RedisVersion](/docs/v2024.8.21/guides/redis/concepts/catalog) crd where the docker images are specified. Currently, when you install KubeDB, it creates the following `RedisVersion` crds, -- `4.0.6-v2`, `4.0.11`, `6.2.14`, `5.0.14` -- `6.0.20`, `6.2.14`, `6.2.14` `6.2.14` -- `7.0.4`, `7.0.14`, `7.0.6` - +- `4.0.11`, `5.0.14` +- `6.0.20`, `6.2.14` +- `7.0.14`, `7.0.15`, `7.2.3`, `7.2.4` ### spec.mode `spec.mode` specifies the mode in which Redis server instance(s) will be deployed. The possible values are either `"Standalone"`, `"Cluster"` and `"Sentinel""`. The default value is `"Standalone"`. @@ -161,7 +160,7 @@ When `spec.mode` is set to `Sentinel`, `spec.sentinelRef.name` and `spec.sentine If `spec.mode` is set to `"Cluster"`, users can optionally provide a cluster specification. Currently, the following two parameters can be configured: - `spec.cluster.shards`: specifies the number of Redis shard nodes. It must be greater or equal to 3. If not set, the operator set it to 3. -- `spec.cluster.replicas`: specifies the number of replica nodes per shard. It must be greater than 0. If not set, the operator set it to 1. +- `spec.cluster.replicas`: specifies the number of replica nodes per shard. It must be greater than 1. If not set, the operator set it to 2. KubeDB uses `PodDisruptionBudget` to ensure that majority of these cluster replicas are available during [voluntary disruptions](https://kubernetes.io/docs/concepts/workloads/pods/disruptions/#voluntary-and-involuntary-disruptions) so that quorum is maintained and no data loss is occurred. @@ -298,10 +297,10 @@ KubeDB accept following fields to set in `spec.podTemplate:` - controller: - annotations (petset's annotation) - spec: - - args - - env - - resources - initContainers + - containers + - volumes + - podPlacementPolicy - imagePullSecrets - nodeSelector - affinity @@ -315,16 +314,20 @@ KubeDB accept following fields to set in `spec.podTemplate:` - readinessProbe - lifecycle -You can check out the full list [here](https://github.com/kmodules/offshoot-api/blob/ea366935d5bad69d7643906c7556923271592513/api/v1/types.go#L42-L259). +You can check out the full list [here](https://github.com/kmodules/offshoot-api/blob/master/api/v2/types.go#L26C1-L279C1). Uses of some field of `spec.podTemplate` is described below, -#### spec.podTemplate.spec.args - `spec.podTemplate.spec.args` is an optional field. This can be used to provide additional arguments to database installation. +#### spec.podTemplate.spec.tolerations + +The `spec.podTemplate.spec.tolerations` is an optional field. This can be used to specify the pod's tolerations. + +#### spec.podTemplate.spec.volumes -### spec.podTemplate.spec.env +The `spec.podTemplate.spec.volumes` is an optional field. This can be used to provide the list of volumes that can be mounted by containers belonging to the pod. -`spec.podTemplate.spec.env` is an optional field that specifies the environment variables to pass to the Redis docker image. +#### spec.podTemplate.spec.podPlacementPolicy +`spec.podTemplate.spec.podPlacementPolicy` is an optional field. This can be used to provide the reference of the podPlacementPolicy. This will be used by our Petset controller to place the db pods throughout the region, zone & nodes according to the policy. It utilizes kubernetes affinity & podTopologySpreadContraints feature to do so. #### spec.podTemplate.spec.imagePullSecret @@ -334,6 +337,24 @@ Uses of some field of `spec.podTemplate` is described below, `spec.podTemplate.spec.nodeSelector` is an optional field that specifies a map of key-value pairs. For the pod to be eligible to run on a node, the node must have each of the indicated key-value pairs as labels (it can have additional labels as well). To learn more, see [here](https://kubernetes.io/docs/concepts/configuration/assign-pod-node/#nodeselector) . +#### spec.podTemplate.spec.containers + +The `spec.podTemplate.spec.containers` can be used to provide the list containers and their configurations for to the database pod. some of the fields are described below, + +##### spec.podTemplate.spec.containers[].name +The `spec.podTemplate.spec.containers[].name` field used to specify the name of the container specified as a DNS_LABEL. Each container in a pod must have a unique name (DNS_LABEL). Cannot be updated. + +##### spec.podTemplate.spec.containers[].args +`spec.podTemplate.spec.containers[].args` is an optional field. This can be used to provide additional arguments to database installation. + +##### spec.podTemplate.spec.containers[].env + +`spec.podTemplate.spec.containers[].env` is an optional field that specifies the environment variables to pass to the Redis containers. + +##### spec.podTemplate.spec.containers[].resources + +`spec.podTemplate.spec.containers[].resources` is an optional field. This can be used to request compute resources required by containers of the database pods. To learn more, visit [here](http://kubernetes.io/docs/user-guide/compute-resources/). + #### spec.podTemplate.spec.serviceAccountName `serviceAccountName` is an optional field supported by KubeDB Operator (version 0.13.0 and higher) that can be used to specify a custom service account to fine tune role based access control. @@ -344,9 +365,6 @@ Uses of some field of `spec.podTemplate` is described below, If a service account name is given, and there's an existing service account by that name, the KubeDB operator will use that existing service account. Since this service account is not managed by KubeDB, users are responsible for providing necessary access permissions manually. Follow the guide [here](/docs/v2024.8.21/guides/redis/custom-rbac/using-custom-rbac) to grant necessary permissions in this scenario. -#### spec.podTemplate.spec.resources - -`spec.podTemplate.spec.resources` is an optional field. This can be used to request compute resources required by the database pods. To learn more, visit [here](http://kubernetes.io/docs/user-guide/compute-resources/). ### spec.serviceTemplates diff --git a/content/docs/v2024.8.21/guides/redis/concepts/redissentinel.md b/content/docs/v2024.8.21/guides/redis/concepts/redissentinel.md index 81e4ec81ff..1b9ff183c2 100644 --- a/content/docs/v2024.8.21/guides/redis/concepts/redissentinel.md +++ b/content/docs/v2024.8.21/guides/redis/concepts/redissentinel.md @@ -92,7 +92,7 @@ spec: imagePullSecrets: - name: regcred containers: - - name: redis + - name: redissentinel args: - "--loglevel verbose" env: @@ -259,9 +259,9 @@ KubeDB accept following fields to set in `spec.podTemplate:` - controller: - annotations (petset's annotation) - spec: - - args - - env - - resources + - containers + - volumes + - podPlacementPolicy - initContainers - imagePullSecrets - nodeSelector @@ -276,14 +276,37 @@ KubeDB accept following fields to set in `spec.podTemplate:` - readinessProbe - lifecycle +You can check out the full list [here](https://github.com/kmodules/offshoot-api/blob/master/api/v2/types.go#L26C1-L279C1). Uses of some field of `spec.podTemplate` is described below, -#### spec.podTemplate.spec.args - `spec.podTemplate.spec.args` is an optional field. This can be used to provide additional arguments to database installation. +#### spec.podTemplate.spec.tolerations -### spec.podTemplate.spec.env +The `spec.podTemplate.spec.tolerations` is an optional field. This can be used to specify the pod's tolerations. -`spec.podTemplate.spec.env` is an optional field that specifies the environment variables to pass to the Redis docker image. +#### spec.podTemplate.spec.volumes + +The `spec.podTemplate.spec.volumes` is an optional field. This can be used to provide the list of volumes that can be mounted by containers belonging to the pod. + +#### spec.podTemplate.spec.podPlacementPolicy + +`spec.podTemplate.spec.podPlacementPolicy` is an optional field. This can be used to provide the reference of the podPlacementPolicy. This will be used by our Petset controller to place the db pods throughout the region, zone & nodes according to the policy. It utilizes kubernetes affinity & podTopologySpreadContraints feature to do so. + + + + +#### spec.podTemplate.spec.containers + +The `spec.podTemplate.spec.containers` can be used to provide the list containers and their configurations for to the database pod. some of the fields are described below, + +##### spec.podTemplate.spec.containers[].name +The `spec.podTemplate.spec.containers[].name` field used to specify the name of the container specified as a DNS_LABEL. Each container in a pod must have a unique name (DNS_LABEL). Cannot be updated. + +##### spec.podTemplate.spec.containers[].args +`spec.podTemplate.spec.containers[].args` is an optional field. This can be used to provide additional arguments to database installation. + +##### spec.podTemplate.spec.containers[].env + +`spec.podTemplate.spec.containers[].env` is an optional field that specifies the environment variables to pass to the Redis containers. Note that, KubeDB does not allow to update the environment variables. If you try to update environment variables, KubeDB operator will reject the request with following error, @@ -299,9 +322,13 @@ name namespace spec.storage spec.podTemplate.spec.nodeSelector -spec.podTemplate.spec.env +spec.podTemplate.spec.containers[].env ``` +##### spec.podTemplate.spec.containers[].resources + +`spec.podTemplate.spec.containers[].resources` is an optional field. This can be used to request compute resources required by containers of the database pods. To learn more, visit [here](http://kubernetes.io/docs/user-guide/compute-resources/). + #### spec.podTemplate.spec.imagePullSecret `KubeDB` provides the flexibility of deploying Redis server from a private Docker registry. To learn how to deploy Redis from a private registry, please visit [here](/docs/v2024.8.21/guides/redis/private-registry/using-private-registry). @@ -320,10 +347,6 @@ spec.podTemplate.spec.env If a service account name is given, and there's an existing service account by that name, the KubeDB operator will use that existing service account. Since this service account is not managed by KubeDB, users are responsible for providing necessary access permissions manually. Follow the guide [here](/docs/v2024.8.21/guides/redis/custom-rbac/using-custom-rbac) to grant necessary permissions in this scenario. -#### spec.podTemplate.spec.resources - -`spec.podTemplate.spec.resources` is an optional field. This can be used to request compute resources required by the database pods. To learn more, visit [here](http://kubernetes.io/docs/user-guide/compute-resources/). - ### spec.serviceTemplates You can also provide a template for the services created by KubeDB operator for Redis server through `spec.serviceTemplates`. This will allow you to set the type and other properties of the services. diff --git a/content/docs/v2024.8.21/setup/monitoring/builtin-prometheus.md b/content/docs/v2024.8.21/setup/monitoring/builtin-prometheus.md index 836f512e13..8dae8eab62 100644 --- a/content/docs/v2024.8.21/setup/monitoring/builtin-prometheus.md +++ b/content/docs/v2024.8.21/setup/monitoring/builtin-prometheus.md @@ -52,10 +52,7 @@ Let's install KubeDB with operator monitoring enabled. $ helm install kubedb oci://ghcr.io/appscode-charts/kubedb \ --version {{< param "info.version" >}} \ --namespace kubedb --create-namespace \ - --set kubedb-provisioner.monitoring.enabled=true \ - --set kubedb-provisioner.monitoring.agent=prometheus.io/builtin \ - --set kubedb-provisioner.monitoring.prometheus.namespace=monitoring \ - --set kubedb-provisioner.monitoring.serviceMonitor.labels.release=prometheus + --set global.monitoring.agent=prometheus.io/builtin ``` **YAML (with Helm 3):** @@ -64,10 +61,8 @@ $ helm install kubedb oci://ghcr.io/appscode-charts/kubedb \ $ helm template kubedb oci://ghcr.io/appscode-charts/kubedb \ --version {{< param "info.version" >}} \ --namespace kubedb --create-namespace \ - --set kubedb-provisioner.monitoring.enabled=true \ - --set kubedb-provisioner.monitoring.agent=prometheus.io/builtin \ - --set kubedb-provisioner.monitoring.prometheus.namespace=monitoring \ - --set kubedb-provisioner.monitoring.serviceMonitor.labels.release=prometheus | kubectl apply -f - + --no-hooks \ + --set global.monitoring.agent=prometheus.io/builtin | kubectl apply -f - ``` This will add necessary annotations to `kubedb` service created in `kubedb` namespace. Prometheus server will scrape metrics using those annotations. Let's check which annotations are added to the service, diff --git a/content/docs/v2024.8.21/setup/monitoring/prometheus-operator.md b/content/docs/v2024.8.21/setup/monitoring/prometheus-operator.md index d045ee6d29..200252ef7d 100644 --- a/content/docs/v2024.8.21/setup/monitoring/prometheus-operator.md +++ b/content/docs/v2024.8.21/setup/monitoring/prometheus-operator.md @@ -52,11 +52,8 @@ Let's install KubeDB operator with monitoring enabled. $ helm install kubedb oci://ghcr.io/appscode-charts/kubedb \ --version {{< param "info.version" >}} \ --namespace kubedb --create-namespace \ - --no-hooks \ - --set monitoring.enabled=true \ - --set monitoring.agent=prometheus.io/operator \ - --set monitoring.prometheus.namespace=monitoring \ - --set monitoring.serviceMonitor.labels.release=prometheus + --set global.monitoring.agent=prometheus.io/operator \ + --set global.monitoring.serviceMonitor.labels.release=kube-prometheus-stack ``` **YAML (with Helm 3):** @@ -66,10 +63,8 @@ $ helm template kubedb oci://ghcr.io/appscode-charts/kubedb \ --version {{< param "info.version" >}} \ --namespace kubedb --create-namespace \ --no-hooks \ - --set monitoring.enabled=true \ - --set monitoring.agent=prometheus.io/operator \ - --set monitoring.prometheus.namespace=monitoring \ - --set monitoring.serviceMonitor.labels.release=prometheus | kubectl apply -f - + --set global.monitoring.agent=prometheus.io/operator \ + --set global.monitoring.serviceMonitor.labels.release=kube-prometheus-stack | kubectl apply -f - ``` This will create a `ServiceMonitor` crd with name `kubedb-servicemonitor` in `monitoring` namespace for monitoring endpoints of `kubedb` service. This `ServiceMonitor` will have label `release: prometheus` as we have provided it by `--servicemonitor-label` flag. This label will be used by Prometheus crd to select this `ServiceMonitor`. diff --git a/data/products/kubestash.json b/data/products/kubestash.json index 8ebd956198..967fbcdd3e 100644 --- a/data/products/kubestash.json +++ b/data/products/kubestash.json @@ -176,6 +176,15 @@ "hostDocs": false, "show": true }, + { + "version": "v2024.8.30", + "hostDocs": true, + "show": true, + "info": { + "cli": "v0.11.0", + "installer": "v2024.8.30" + } + }, { "version": "v2024.8.14", "hostDocs": true, @@ -222,7 +231,7 @@ } } ], - "latestVersion": "v2024.8.14", + "latestVersion": "v2024.8.30", "socialLinks": { "facebook": "https://facebook.com/appscode", "github": "https://github.com/kubestash", diff --git a/data/products/stash-cli.json b/data/products/stash-cli.json index d3f346ecec..c35c800929 100644 --- a/data/products/stash-cli.json +++ b/data/products/stash-cli.json @@ -22,6 +22,87 @@ "hostDocs": false, "show": true }, + { + "version": "v0.35.0", + "hostDocs": true, + "show": true, + "info": { + "stash": "v2024.8.27", + "stash-community": "v0.35.0", + "stash-elasticsearch": [ + "5.6.4-v32", + "6.2.4-v32", + "6.3.0-v32", + "6.4.0-v32", + "6.5.3-v32", + "6.8.0-v32", + "7.14.0-v18", + "7.2.0-v32", + "7.3.2-v32", + "8.2.0-v15" + ], + "stash-enterprise": "v0.35.0", + "stash-etcd": [ + "3.5.0-v19" + ], + "stash-installer": "v2024.8.27", + "stash-kubedump": [ + "0.1.0-v15" + ], + "stash-mariadb": [ + "10.5.8-v26" + ], + "stash-mongodb": [ + "3.4.17-v32", + "3.4.22-v32", + "3.6.13-v32", + "3.6.8-v32", + "4.0.11-v32", + "4.0.3-v32", + "4.0.5-v32", + "4.1.13-v32", + "4.1.4-v32", + "4.1.7-v32", + "4.2.3-v32", + "4.4.6-v23", + "5.0.15-v5", + "5.0.3-v20", + "6.0.5-v8" + ], + "stash-mysql": [ + "5.7.25-v32", + "8.0.14-v32", + "8.0.21-v26", + "8.0.3-v32" + ], + "stash-nats": [ + "2.6.1-v20", + "2.8.2-v15" + ], + "stash-perconaxtradb": [ + "5.7-v27" + ], + "stash-postgres": [ + "10.14-v31", + "11.9-v31", + "12.4-v31", + "13.1-v28", + "14.0-v20", + "15.1-v12", + "16.1-v1", + "9.6.19-v31" + ], + "stash-redis": [ + "5.0.13-v20", + "6.2.5-v20", + "7.0.5-v13" + ], + "stash-ui-server": "v0.16.0", + "stash-vault": [ + "1.10.3-v12" + ] + } + }, { "version": "v0.34.0", "hostDocs": true, @@ -2424,5 +2505,5 @@ "show": true } ], - "latestVersion": "v0.34.0" + "latestVersion": "v0.35.0" } diff --git a/data/products/stash-elasticsearch.json b/data/products/stash-elasticsearch.json index 8d39990550..fb6548ab48 100644 --- a/data/products/stash-elasticsearch.json +++ b/data/products/stash-elasticsearch.json @@ -27,6 +27,11 @@ "hostDocs": false, "show": true }, + { + "version": "8.2.0-v15", + "hostDocs": true, + "show": true + }, { "version": "8.2.0-v14", "hostDocs": true, @@ -97,6 +102,11 @@ "hostDocs": true, "show": true }, + { + "version": "7.14.0-v18", + "hostDocs": true, + "show": true + }, { "version": "7.14.0-v17", "hostDocs": true, @@ -182,6 +192,11 @@ "hostDocs": true, "show": true }, + { + "version": "7.3.2-v32", + "hostDocs": true, + "show": true + }, { "version": "7.3.2-v31", "hostDocs": true, @@ -359,6 +374,11 @@ "hostDocs": true, "show": true }, + { + "version": "7.2.0-v32", + "hostDocs": true, + "show": true + }, { "version": "7.2.0-v31", "hostDocs": true, @@ -536,6 +556,11 @@ "hostDocs": true, "show": true }, + { + "version": "6.8.0-v32", + "hostDocs": true, + "show": true + }, { "version": "6.8.0-v31", "hostDocs": true, @@ -713,6 +738,11 @@ "hostDocs": true, "show": true }, + { + "version": "6.5.3-v32", + "hostDocs": true, + "show": true + }, { "version": "6.5.3-v31", "hostDocs": true, @@ -890,6 +920,11 @@ "hostDocs": true, "show": true }, + { + "version": "6.4.0-v32", + "hostDocs": true, + "show": true + }, { "version": "6.4.0-v31", "hostDocs": true, @@ -1067,6 +1102,11 @@ "hostDocs": true, "show": true }, + { + "version": "6.3.0-v32", + "hostDocs": true, + "show": true + }, { "version": "6.3.0-v31", "hostDocs": true, @@ -1244,6 +1284,11 @@ "hostDocs": true, "show": true }, + { + "version": "6.2.4-v32", + "hostDocs": true, + "show": true + }, { "version": "6.2.4-v31", "hostDocs": true, @@ -1421,6 +1466,11 @@ "hostDocs": true, "show": true }, + { + "version": "5.6.4-v32", + "hostDocs": true, + "show": true + }, { "version": "5.6.4-v31", "hostDocs": true, @@ -1599,5 +1649,5 @@ "show": true } ], - "latestVersion": "8.2.0-v14" + "latestVersion": "8.2.0-v15" } diff --git a/data/products/stash-etcd.json b/data/products/stash-etcd.json index 5ccb61d0c3..7110902ecc 100644 --- a/data/products/stash-etcd.json +++ b/data/products/stash-etcd.json @@ -27,6 +27,11 @@ "hostDocs": false, "show": true }, + { + "version": "3.5.0-v19", + "hostDocs": true, + "show": true + }, { "version": "3.5.0-v18", "hostDocs": true, @@ -118,5 +123,5 @@ "show": true } ], - "latestVersion": "3.5.0-v18" + "latestVersion": "3.5.0-v19" } diff --git a/data/products/stash-kubedump.json b/data/products/stash-kubedump.json index ce75904086..0684501a4d 100644 --- a/data/products/stash-kubedump.json +++ b/data/products/stash-kubedump.json @@ -27,6 +27,11 @@ "hostDocs": false, "show": true }, + { + "version": "0.1.0-v15", + "hostDocs": true, + "show": true + }, { "version": "0.1.0-v14", "hostDocs": true, @@ -98,5 +103,5 @@ "show": true } ], - "latestVersion": "0.1.0-v14" + "latestVersion": "0.1.0-v15" } diff --git a/data/products/stash-mariadb.json b/data/products/stash-mariadb.json index 8a10cebe7a..66a0861d7c 100644 --- a/data/products/stash-mariadb.json +++ b/data/products/stash-mariadb.json @@ -27,6 +27,11 @@ "hostDocs": false, "show": true }, + { + "version": "10.5.8-v26", + "hostDocs": true, + "show": true + }, { "version": "10.5.8-v25", "hostDocs": true, @@ -148,5 +153,5 @@ "show": true } ], - "latestVersion": "10.5.8-v25" + "latestVersion": "10.5.8-v26" } diff --git a/data/products/stash-mongodb.json b/data/products/stash-mongodb.json index fd099a2180..d43411773c 100644 --- a/data/products/stash-mongodb.json +++ b/data/products/stash-mongodb.json @@ -27,6 +27,11 @@ "hostDocs": false, "show": true }, + { + "version": "6.0.5-v8", + "hostDocs": true, + "show": true + }, { "version": "6.0.5-v7", "hostDocs": true, @@ -59,6 +64,11 @@ "version": "6.0.5-v1", "hostDocs": true }, + { + "version": "5.0.15-v5", + "hostDocs": true, + "show": true + }, { "version": "5.0.15-v4", "hostDocs": true, @@ -83,6 +93,11 @@ "version": "5.0.15", "hostDocs": true }, + { + "version": "5.0.3-v20", + "hostDocs": true, + "show": true + }, { "version": "5.0.3-v19", "hostDocs": true, @@ -178,6 +193,11 @@ "hostDocs": true, "show": true }, + { + "version": "4.4.6-v23", + "hostDocs": true, + "show": true + }, { "version": "4.4.6-v22", "hostDocs": true, @@ -288,6 +308,11 @@ "hostDocs": true, "show": true }, + { + "version": "4.2.3-v32", + "hostDocs": true, + "show": true + }, { "version": "4.2.3-v31", "hostDocs": true, @@ -465,6 +490,11 @@ "hostDocs": true, "show": true }, + { + "version": "4.1.13-v32", + "hostDocs": true, + "show": true + }, { "version": "4.1.13-v31", "hostDocs": true, @@ -620,6 +650,11 @@ "hostDocs": true, "show": true }, + { + "version": "4.1.7-v32", + "hostDocs": true, + "show": true + }, { "version": "4.1.7-v31", "hostDocs": true, @@ -797,6 +832,11 @@ "hostDocs": true, "show": true }, + { + "version": "4.1.4-v32", + "hostDocs": true, + "show": true + }, { "version": "4.1.4-v31", "hostDocs": true, @@ -996,6 +1036,11 @@ "version": "4.1.1-beta.20200708", "hostDocs": true }, + { + "version": "4.0.11-v32", + "hostDocs": true, + "show": true + }, { "version": "4.0.11-v31", "hostDocs": true, @@ -1161,6 +1206,11 @@ "hostDocs": true, "show": true }, + { + "version": "4.0.5-v32", + "hostDocs": true, + "show": true + }, { "version": "4.0.5-v31", "hostDocs": true, @@ -1338,6 +1388,11 @@ "hostDocs": true, "show": true }, + { + "version": "4.0.3-v32", + "hostDocs": true, + "show": true + }, { "version": "4.0.3-v31", "hostDocs": true, @@ -1527,6 +1582,11 @@ "version": "4.0.1-beta.20200708", "hostDocs": true }, + { + "version": "3.6.13-v32", + "hostDocs": true, + "show": true + }, { "version": "3.6.13-v31", "hostDocs": true, @@ -1682,6 +1742,11 @@ "hostDocs": true, "show": true }, + { + "version": "3.6.8-v32", + "hostDocs": true, + "show": true + }, { "version": "3.6.8-v31", "hostDocs": true, @@ -1881,6 +1946,11 @@ "version": "3.6.1-beta.20200708", "hostDocs": true }, + { + "version": "3.4.22-v32", + "hostDocs": true, + "show": true + }, { "version": "3.4.22-v31", "hostDocs": true, @@ -2036,6 +2106,11 @@ "hostDocs": true, "show": true }, + { + "version": "3.4.17-v32", + "hostDocs": true, + "show": true + }, { "version": "3.4.17-v31", "hostDocs": true, @@ -2236,5 +2311,5 @@ "hostDocs": true } ], - "latestVersion": "6.0.5-v7" + "latestVersion": "6.0.5-v8" } diff --git a/data/products/stash-mysql.json b/data/products/stash-mysql.json index 166d5dd552..5536e5e900 100644 --- a/data/products/stash-mysql.json +++ b/data/products/stash-mysql.json @@ -27,6 +27,11 @@ "hostDocs": false, "show": true }, + { + "version": "8.0.21-v26", + "hostDocs": true, + "show": true + }, { "version": "8.0.21-v25", "hostDocs": true, @@ -152,6 +157,11 @@ "hostDocs": true, "show": true }, + { + "version": "8.0.14-v32", + "hostDocs": true, + "show": true + }, { "version": "8.0.14-v31", "hostDocs": true, @@ -329,6 +339,11 @@ "hostDocs": true, "show": true }, + { + "version": "8.0.3-v32", + "hostDocs": true, + "show": true + }, { "version": "8.0.3-v31", "hostDocs": true, @@ -506,6 +521,11 @@ "hostDocs": true, "show": true }, + { + "version": "5.7.25-v32", + "hostDocs": true, + "show": true + }, { "version": "5.7.25-v31", "hostDocs": true, @@ -684,5 +704,5 @@ "show": true } ], - "latestVersion": "8.0.21-v25" + "latestVersion": "8.0.21-v26" } diff --git a/data/products/stash-nats.json b/data/products/stash-nats.json index db88318311..3e531d4c6d 100644 --- a/data/products/stash-nats.json +++ b/data/products/stash-nats.json @@ -27,6 +27,11 @@ "hostDocs": false, "show": true }, + { + "version": "2.8.2-v15", + "hostDocs": true, + "show": true + }, { "version": "2.8.2-v14", "hostDocs": true, @@ -97,6 +102,11 @@ "hostDocs": true, "show": true }, + { + "version": "2.6.1-v20", + "hostDocs": true, + "show": true + }, { "version": "2.6.1-v19", "hostDocs": true, @@ -193,5 +203,5 @@ "show": true } ], - "latestVersion": "2.8.2-v14" + "latestVersion": "2.8.2-v15" } diff --git a/data/products/stash-postgres.json b/data/products/stash-postgres.json index 400575f23d..ab4e529a00 100644 --- a/data/products/stash-postgres.json +++ b/data/products/stash-postgres.json @@ -27,11 +27,21 @@ "hostDocs": false, "show": true }, + { + "version": "16.1-v1", + "hostDocs": true, + "show": true + }, { "version": "16.1", "hostDocs": true, "show": true }, + { + "version": "15.1-v12", + "hostDocs": true, + "show": true + }, { "version": "15.1-v11", "hostDocs": true, @@ -87,6 +97,11 @@ "hostDocs": true, "show": true }, + { + "version": "14.0-v20", + "hostDocs": true, + "show": true + }, { "version": "14.0-v19", "hostDocs": true, @@ -182,6 +197,11 @@ "hostDocs": true, "show": true }, + { + "version": "13.1-v28", + "hostDocs": true, + "show": true + }, { "version": "13.1-v27", "hostDocs": true, @@ -322,6 +342,11 @@ "hostDocs": true, "show": true }, + { + "version": "12.4-v31", + "hostDocs": true, + "show": true + }, { "version": "12.4-v30", "hostDocs": true, @@ -477,6 +502,11 @@ "hostDocs": true, "show": true }, + { + "version": "11.9-v31", + "hostDocs": true, + "show": true + }, { "version": "11.9-v30", "hostDocs": true, @@ -696,6 +726,11 @@ "hostDocs": true, "show": true }, + { + "version": "10.14-v31", + "hostDocs": true, + "show": true + }, { "version": "10.14-v30", "hostDocs": true, @@ -915,6 +950,11 @@ "hostDocs": true, "show": true }, + { + "version": "9.6.19-v31", + "hostDocs": true, + "show": true + }, { "version": "9.6.19-v30", "hostDocs": true, @@ -1098,5 +1138,5 @@ "show": true } ], - "latestVersion": "16.1" + "latestVersion": "16.1-v1" } diff --git a/data/products/stash.json b/data/products/stash.json index 05446299fb..3ce5efde4e 100644 --- a/data/products/stash.json +++ b/data/products/stash.json @@ -181,6 +181,87 @@ "hostDocs": false, "show": true }, + { + "version": "v2024.8.27", + "hostDocs": true, + "show": true, + "info": { + "cli": "v0.35.0", + "community": "v0.35.0", + "elasticsearch": [ + "5.6.4-v32", + "6.2.4-v32", + "6.3.0-v32", + "6.4.0-v32", + "6.5.3-v32", + "6.8.0-v32", + "7.14.0-v18", + "7.2.0-v32", + "7.3.2-v32", + "8.2.0-v15" + ], + "enterprise": "v0.35.0", + "etcd": [ + "3.5.0-v19" + ], + "installer": "v2024.8.27", + "kubedump": [ + "0.1.0-v15" + ], + "mariadb": [ + "10.5.8-v26" + ], + "mongodb": [ + "3.4.17-v32", + "3.4.22-v32", + "3.6.13-v32", + "3.6.8-v32", + "4.0.11-v32", + "4.0.3-v32", + "4.0.5-v32", + "4.1.13-v32", + "4.1.4-v32", + "4.1.7-v32", + "4.2.3-v32", + "4.4.6-v23", + "5.0.15-v5", + "5.0.3-v20", + "6.0.5-v8" + ], + "mysql": [ + "5.7.25-v32", + "8.0.14-v32", + "8.0.21-v26", + "8.0.3-v32" + ], + "nats": [ + "2.6.1-v20", + "2.8.2-v15" + ], + "percona-xtradb": [ + "5.7-v27" + ], + "postgres": [ + "10.14-v31", + "11.9-v31", + "12.4-v31", + "13.1-v28", + "14.0-v20", + "15.1-v12", + "16.1-v1", + "9.6.19-v31" + ], + "redis": [ + "5.0.13-v20", + "6.2.5-v20", + "7.0.5-v13" + ], + "ui-server": "v0.16.0", + "vault": [ + "1.10.3-v12" + ] + } + }, { "version": "v2024.4.8", "hostDocs": true, @@ -2929,7 +3010,7 @@ "hostDocs": false } ], - "latestVersion": "v2024.4.8", + "latestVersion": "v2024.8.27", "socialLinks": { "facebook": "https://facebook.com/appscode", "github": "https://github.com/stashed", diff --git a/data/products/voyager.json b/data/products/voyager.json index 2e4b963d1b..942ab0d31f 100644 --- a/data/products/voyager.json +++ b/data/products/voyager.json @@ -131,6 +131,15 @@ "hostDocs": false, "show": true }, + { + "version": "v2024.8.30", + "hostDocs": true, + "show": true, + "info": { + "cli": "v0.0.16", + "installer": "v2024.8.30" + } + }, { "version": "v2024.3.18", "hostDocs": true, @@ -443,7 +452,7 @@ "hostDocs": false } ], - "latestVersion": "v2024.3.18", + "latestVersion": "v2024.8.30", "socialLinks": { "facebook": "https://facebook.com/appscode", "github": "https://github.com/voyagermesh/voyager",