Skip to content

Commit

Permalink
[Chore] Update some yaml files to release v1.9.5 (#510)
Browse files Browse the repository at this point in the history
Signed-off-by: yandongxiao <[email protected]>
  • Loading branch information
yandongxiao authored Apr 12, 2024
1 parent 53f728f commit cad4beb
Show file tree
Hide file tree
Showing 10 changed files with 177 additions and 15 deletions.
33 changes: 33 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,38 @@
# CHANGELOG

## [v1.9.5](https://github.com/StarRocks/starrocks-kubernetes-operator/releases/tag/v1.9.5)

Release Notes for starrocks-kubernetes-operator v1.9.5

We are excited to announce the release of StarRocks Kubernetes Operator v1.9.5. This version brings a mix of
features and enhancements to further improve the deployment and management of StarRocks clusters on Kubernetes
environments.

### Feature

- [Feature] Support init Containers. User can add a k8s pod format initContainers.
PR [#499](https://github.com/StarRocks/starrocks-kubernetes-operator/pull/499) [#508](https://github.com/StarRocks/starrocks-kubernetes-operator/pull/508)
- [Feature] Support sidecars. User can add a k8s pod format sidecars.
PR [#461](https://github.com/StarRocks/starrocks-kubernetes-operator/pull/461)
- [Feature] Support deploy multiple StarRocks clusters in one namespace.
PR [#493](https://github.com/StarRocks/starrocks-kubernetes-operator/pull/493) [#509](https://github.com/StarRocks/starrocks-kubernetes-operator/pull/509)

### Enhancements

- [Enhancement] Support users to apply their own resources.
PR [#496](https://github.com/StarRocks/starrocks-kubernetes-operator/pull/496)
- [Enhancement] Support to customize securityContext for Operator Chart.
PR [#495](https://github.com/StarRocks/starrocks-kubernetes-operator/pull/495)
- [Enhancement] Support warehouse to be deployed in different namespace with StarRocks cluster.
PR [#505](https://github.com/StarRocks/starrocks-kubernetes-operator/pull/505)

### Maintenance

[Chore] This PR aims to standardize the format of YAML files in templates directory.
PR [#501](https://github.com/StarRocks/starrocks-kubernetes-operator/pull/501)
[Chore] Upgrade Golang version to 1.22, and `sigs.k8s.io/controller-runtime` to v0.14.0.
PR [#497](https://github.com/StarRocks/starrocks-kubernetes-operator/pull/497)

## [v1.9.4](https://github.com/StarRocks/starrocks-kubernetes-operator/releases/tag/v1.9.4)

Release Notes for starrocks-kubernetes-operator v1.9.4
Expand Down
6 changes: 3 additions & 3 deletions deploy/operator.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ spec:
kubectl.kubernetes.io/default-container: manager
labels:
app: kube-starrocks-operator
version: 1.9.4
version: 1.9.5
spec:
automountServiceAccountToken: true
containers:
Expand All @@ -173,13 +173,13 @@ spec:
env:
- name: TZ
value: Asia/Shanghai
image: "starrocks/operator:v1.9.4"
image: "starrocks/operator:v1.9.5"
imagePullPolicy: Always
name: manager
securityContext:
runAsNonRoot: true
allowPrivilegeEscalation: false
readOnlyRootFilesystem: true
runAsNonRoot: true
livenessProbe:
httpGet:
path: /healthz
Expand Down
19 changes: 17 additions & 2 deletions doc/api.md
Original file line number Diff line number Diff line change
Expand Up @@ -1091,7 +1091,22 @@ Defaults to 120 seconds.</p>
<em>(Optional)</em>
<p>Sidecars is an optional list of containers that are run in the same pod as the starrocks component.
You can use this field to launch helper containers that provide additional functionality to the main container.
See <a href="https://kubernetes.io/docs/reference/kubernetes-api/workload-resources/pod-v1/#Container">https://kubernetes.io/docs/reference/kubernetes-api/workload-resources/pod-v1/#Container</a> for more details.</p>
See <a href="https://kubernetes.io/docs/reference/kubernetes-api/workload-resources/pod-v1/#Container">https://kubernetes.io/docs/reference/kubernetes-api/workload-resources/pod-v1/#Container</a> for how to configure a container.</p>
</td>
</tr>
<tr>
<td>
<code>initContainers</code><br/>
<em>
<a href="https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.24/#container-v1-core">
[]Kubernetes core/v1.Container
</a>
</em>
</td>
<td>
<p>InitContainers is an optional list of containers that are run in the same pod as the starrocks component.
You can use this field to launch helper containers that run before the main container starts.
See <a href="https://kubernetes.io/docs/reference/kubernetes-api/workload-resources/pod-v1/#Container">https://kubernetes.io/docs/reference/kubernetes-api/workload-resources/pod-v1/#Container</a> for how to configure a container.</p>
</td>
</tr>
</tbody>
Expand Down Expand Up @@ -2164,5 +2179,5 @@ AutoScalingPolicy
<hr/>
<p><em>
Generated with <code>gen-crd-api-reference-docs</code>
on git commit <code>e4e8cae</code>.
on git commit <code>53f728f</code>.
</em></p>
6 changes: 3 additions & 3 deletions helm-charts/charts/kube-starrocks/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ maintainers:
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 1.9.4
version: 1.9.5

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
Expand All @@ -43,10 +43,10 @@ keywords:

dependencies:
- name: operator
version: 1.9.4
version: 1.9.5
repository: "file://charts/operator"
- name: starrocks
version: 1.9.4
version: 1.9.5
repository: "file://charts/starrocks"

sources:
Expand Down
4 changes: 2 additions & 2 deletions helm-charts/charts/kube-starrocks/charts/operator/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,13 +25,13 @@ maintainers:
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 1.9.4
version: 1.9.5

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
# follow Semantic Versioning. They should reflect the version the application is using.
# It is recommended to use it with quotes.
appVersion: 1.9.4
appVersion: 1.9.5

kubeVersion: ">=1.18.3-0"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ starrocksOperator:
image:
# image sliced by "repository:tag"
repository: starrocks/operator
tag: v1.9.4
tag: v1.9.5
imagePullPolicy: Always
replicaCount: 1
resources:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ maintainers:
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 1.9.4
version: 1.9.5

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
Expand Down
2 changes: 1 addition & 1 deletion helm-charts/charts/kube-starrocks/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ operator:
image:
# image sliced by "repository:tag"
repository: starrocks/operator
tag: v1.9.4
tag: v1.9.5
imagePullPolicy: Always
replicaCount: 1
resources:
Expand Down
2 changes: 1 addition & 1 deletion helm-charts/charts/warehouse/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ maintainers:
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 1.9.4
version: 1.9.5

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
Expand Down
116 changes: 115 additions & 1 deletion index.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,40 @@
apiVersion: v1
entries:
kube-starrocks:
- apiVersion: v2
appVersion: 3.2-latest
created: "2024-04-12T14:43:02.644054+08:00"
dependencies:
- name: operator
repository: file://charts/operator
version: 1.9.5
- name: starrocks
repository: file://charts/starrocks
version: 1.9.5
description: kube-starrocks includes two subcharts, operator and starrocks
digest: 449b40da6834b54544f00966bce9e63d7c0934951b17cd9ce03b33557203c114
home: https://github.com/StarRocks/starrocks-kubernetes-operator
icon: https://avatars.githubusercontent.com/u/88238841
keywords:
- operator
- starrocks
- database
- olap
kubeVersion: '>=1.18.3-0'
maintainers:
- email: [email protected]
name: Kevin Cai
- email: [email protected]
name: SidaShen
- email: [email protected]
name: Dongxiao Yan
name: kube-starrocks
sources:
- https://github.com/StarRocks/starrocks
type: application
urls:
- https://github.com/StarRocks/starrocks-kubernetes-operator/releases/download/v1.9.5/kube-starrocks-1.9.5.tgz
version: 1.9.5
- apiVersion: v2
appVersion: 3.2-latest
created: "2024-03-25T11:43:08.284798+08:00"
Expand Down Expand Up @@ -409,6 +443,33 @@ entries:
- https://github.com/StarRocks/starrocks-kubernetes-operator/releases/download/v1.7.1/kube-starrocks-1.7.1.tgz
version: 1.7.1
operator:
- apiVersion: v2
appVersion: 1.9.5
created: "2024-04-12T14:43:05.141454+08:00"
description: A Helm chart for StarRocks operator
digest: fcc1e0877e7f66c29d539315deb05a3ac9fba05d39f3d72116ffc24a65e33068
home: https://github.com/StarRocks/starrocks-kubernetes-operator
icon: https://avatars.githubusercontent.com/u/88238841
keywords:
- operator
- starrocks
- database
- olap
kubeVersion: '>=1.18.3-0'
maintainers:
- email: [email protected]
name: Kevin Cai
- email: [email protected]
name: SidaShen
- email: [email protected]
name: Dongxiao Yan
name: operator
sources:
- https://github.com/StarRocks/starrocks
type: application
urls:
- https://github.com/StarRocks/starrocks-kubernetes-operator/releases/download/v1.9.5/operator-1.9.5.tgz
version: 1.9.5
- apiVersion: v2
appVersion: 1.9.4
created: "2024-03-25T11:43:10.552202+08:00"
Expand Down Expand Up @@ -813,6 +874,33 @@ entries:
- https://github.com/StarRocks/starrocks
type: application
urls:
- https://github.com/StarRocks/starrocks-kubernetes-operator/releases/download/v1.9.5/starrocks-1.9.5.tgz
version: 1.9.5
- apiVersion: v2
appVersion: 3.2-latest
created: "2024-04-12T14:43:02.646285+08:00"
description: A Helm chart for StarRocks cluster
digest: 189dd388b10c17df81fafbe2f052dff2efb25bc4b2944fb05b35d692fd05cedb
home: https://github.com/StarRocks/starrocks-kubernetes-operator
icon: https://avatars.githubusercontent.com/u/88238841
keywords:
- operator
- starrocks
- database
- olap
kubeVersion: '>=1.18.3-0'
maintainers:
- email: [email protected]
name: Kevin Cai
- email: [email protected]
name: SidaShen
- email: [email protected]
name: Dongxiao Yan
name: starrocks
sources:
- https://github.com/StarRocks/starrocks
type: application
urls:
- https://github.com/StarRocks/starrocks-kubernetes-operator/releases/download/v1.9.4/starrocks-1.9.4.tgz
version: 1.9.4
- apiVersion: v2
Expand Down Expand Up @@ -1167,6 +1255,32 @@ entries:
- https://github.com/StarRocks/starrocks-kubernetes-operator/releases/download/v1.8.0/starrocks-1.8.0.tgz
version: 1.8.0
warehouse:
- apiVersion: v2
appVersion: 3.2-latest
created: "2024-04-12T14:43:10.120059+08:00"
description: Warehouse is currently a feature of the StarRocks Enterprise Edition.
digest: b855d832681280308bea8d5e3561ab96617625b9090aeac5fd1b8e66d535f729
home: https://github.com/StarRocks/starrocks-kubernetes-operator
icon: https://avatars.githubusercontent.com/u/88238841
keywords:
- operator
- starrocks
- database
- olap
- multi-warehouse
kubeVersion: '>=1.18.3-0'
maintainers:
- email: [email protected]
name: Kevin Cai
- email: [email protected]
name: Dongxiao Yan
name: warehouse
sources:
- https://github.com/StarRocks/starrocks
type: application
urls:
- https://github.com/StarRocks/starrocks-kubernetes-operator/releases/download/v1.9.5/warehouse-1.9.5.tgz
version: 1.9.5
- apiVersion: v2
appVersion: 3.2-latest
created: "2024-03-25T11:43:15.205066+08:00"
Expand Down Expand Up @@ -1297,4 +1411,4 @@ entries:
urls:
- https://github.com/StarRocks/starrocks-kubernetes-operator/releases/download/v1.9.0/warehouse-1.9.0.tgz
version: 1.9.0
generated: "2024-03-25T11:43:15.20444+08:00"
generated: "2024-04-12T14:43:10.119534+08:00"

0 comments on commit cad4beb

Please sign in to comment.