Skip to content

Commit

Permalink
bump v0.8.1
Browse files Browse the repository at this point in the history
  • Loading branch information
KubeKyrie committed Dec 25, 2024
1 parent c1d8c10 commit 2d5f839
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions charts/cloudtty/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@ type: application
# 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: 0.8.0
version: 0.8.1

# 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: "0.8.0"
appVersion: "0.8.1"

sources:
- "https://github.com/cloudtty/cloudtty"
Expand Down
4 changes: 2 additions & 2 deletions charts/cloudtty/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ $ kubectl delete crd clusteroperations.kubean.io
| `maxWorkerLimit` | defines the max limit of worker pool | `nil` |
| `image.registry` | cloudtty image registry | `ghcr.io` |
| `image.repository` | cloudtty image repository | `cloudtty/cloudshell-operator` |
| `image.tag` | cloudtty image tag (immutable tags are recommended) | `v0.8.0` |
| `image.tag` | cloudtty image tag (immutable tags are recommended) | `v0.8.1` |
| `image.pullPolicy` | cloudtty image pull policy | `IfNotPresent` |
| `image.pullSecrets` | Specify docker-registry secret names as an array | `[]` |
| `resources` | controllerManager resource requests and limits | `{}` |
Expand All @@ -98,4 +98,4 @@ $ kubectl delete crd clusteroperations.kubean.io
| `readinessProbe.enabled` | Enable readinessProbe on Kafka containers | `false` |
| `cloudshellImage.registry` | cloudshell image registry | `ghcr.io` |
| `cloudshellImage.repository` | cloudshell image repository | `cloudtty/cloudshell` |
| `cloudshellImage.tag` | cloudshell image tag (immutable tags are recommended) | `v0.8.0` |
| `cloudshellImage.tag` | cloudshell image tag (immutable tags are recommended) | `v0.8.1` |
4 changes: 2 additions & 2 deletions charts/cloudtty/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ maxWorkerLimit: 10
image:
registry: ghcr.io
repository: cloudtty/cloudshell-operator
tag: "v0.8.0"
tag: "v0.8.1"
## Specify a imagePullPolicy
## Defaults to 'Always' if image tag is 'latest', else set to 'IfNotPresent'
## ref: https://kubernetes.io/docs/user-guide/images/#pre-pulling-images
Expand Down Expand Up @@ -91,4 +91,4 @@ readinessProbe:
cloudshellImage:
registry: ghcr.io
repository: cloudtty/cloudshell
tag: "v0.8.0"
tag: "v0.8.1"
2 changes: 1 addition & 1 deletion docker/Dockerfile.example
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ghcr.io/cloudtty/cloudshell:v0.8.0
FROM ghcr.io/cloudtty/cloudshell:v0.8.1

RUN curl -fsSLO https://github.com/karmada-io/karmada/releases/download/v1.2.0/kubectl-karmada-linux-amd64.tgz \
&& tar -zxf kubectl-karmada-linux-amd64.tgz \
Expand Down
2 changes: 1 addition & 1 deletion pkg/constants/constants.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ const (
DefaultIngressName = "cloudshell-ingress"
DefaultVirtualServiceName = "cloudshell-virtualService"
DefaultServicePort = 7681
DefaultTtydImage = "ghcr.io/cloudtty/cloudshell:v0.8.0"
DefaultTtydImage = "ghcr.io/cloudtty/cloudshell:v0.8.1"

CloudshellPodLabelKey = "cloudshell.cloudtty.io/pod-name"

Expand Down

0 comments on commit 2d5f839

Please sign in to comment.