Skip to content

Commit 03edd57

Browse files
author
Jacob Woffenden
authored
☁️ Update Cloud Platform feature (#139)
Signed-off-by: Jacob Woffenden <jacob.woffenden@digital.justice.gov.uk>
1 parent 8432c17 commit 03edd57

File tree

3 files changed

+12
-4
lines changed

3 files changed

+12
-4
lines changed

features/src/cloud-platform/CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99

1010
## [Unreleased]
1111

12+
## [0.0.5] - 2024-10-07
13+
14+
## Changed
15+
16+
- Bumped to `ghcr.io/ministryofjustice/devcontainer-feature/kubernetes:1`
17+
18+
- Bumped Kubernetes CLI version to `v1.29.9`
19+
1220
## [0.0.4] - 2024-04-05
1321

1422
## Changed

features/src/cloud-platform/devcontainer-feature.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"id": "cloud-platform",
3-
"version": "0.0.4",
3+
"version": "0.0.5",
44
"name": "Cloud Platform",
55
"description": "Installs the Cloud Platform CLI",
66
"options": {
@@ -21,8 +21,8 @@
2121
}
2222
},
2323
"dependsOn": {
24-
"ghcr.io/ministryofjustice/devcontainer-feature/kubernetes:0": {
25-
"kubernetesCliVersion": "v1.26.13"
24+
"ghcr.io/ministryofjustice/devcontainer-feature/kubernetes:1": {
25+
"kubernetesCliVersion": "v1.29.9"
2626
}
2727
}
2828
}

features/src/cloud-platform/install-cloud-platform-cli.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ install --owner=vscode --group=vscode --mode=775 cloud-platform /usr/local/bin/c
3232
install --owner=vscode --group=vscode --mode=775 completions/cloud-platform.zsh /usr/local/share/zsh/site-functions/_cloud-platform
3333

3434
if [[ "${INSTALL_CLOUD_PLATFORM_KUBECONFIG}" == "true" ]]; then
35-
install --owner=vscode --group=vscode --mode=775 "$(dirname "${0}")"/src/home/vscode/.kube/config /home/vscode/.kube/config
35+
install --owner=vscode --group=vscode --mode=0600 "$(dirname "${0}")"/src/home/vscode/.kube/config /home/vscode/.kube/config
3636
fi
3737

3838
if [[ "${INSTALL_CLOUD_PLATFORM_PROMPT}" == "true" ]]; then

0 commit comments

Comments
 (0)