Skip to content
This repository was archived by the owner on May 14, 2025. It is now read-only.

Commit cd39a63

Browse files
author
Corneil du Plessis
authored
Carvel setup before actions. (#5217)
1 parent c37820f commit cd39a63

File tree

6 files changed

+2
-17
lines changed

6 files changed

+2
-17
lines changed

.github/actions/build-package-bundle/action.yml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,6 @@ inputs:
2828
config:
2929
description: path to ytt config files dir
3030
required: true
31-
token:
32-
description: 'GITHUB_TOKEN'
33-
required: true
3431
outputs:
3532
bundle-path:
3633
description: Location path where bundle was build
@@ -39,9 +36,6 @@ outputs:
3936
runs:
4037
using: "composite"
4138
steps:
42-
- uses: carvel-dev/setup-action@v1
43-
with:
44-
token: ${{ inputs.token }}
4539
- name: Tanzu Dance
4640
id: tanzu-dance
4741
env:

.github/actions/build-repository-bundle/action.yml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,6 @@ inputs:
1313
package-name:
1414
description: package name
1515
required: true
16-
token:
17-
description: 'GITHUB_TOKEN'
18-
required: true
1916
outputs:
2017
bundle-path:
2118
description: Location path where bundle was build
@@ -24,9 +21,6 @@ outputs:
2421
runs:
2522
using: "composite"
2623
steps:
27-
- uses: carvel-dev/setup-action@v1
28-
with:
29-
token: ${{ inputs.token }}
3024
- name: Tanzu Dance
3125
id: tanzu-dance
3226
env:

.github/actions/publish-bundle/action.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ inputs:
1717
runs:
1818
using: "composite"
1919
steps:
20-
- uses: carvel-dev/setup-action@v1
2120
- name: Setup Envs
2221
shell: bash
2322
run: |

.github/workflows/carvel-worker.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,6 @@ jobs:
4747
package-bundle-template: src/carvel/templates/bundle/package
4848
imgpkg-lock-template: src/carvel/templates/imgpkg
4949
config: src/carvel/config
50-
token: ${{ secrets.GITHUB_TOKEN }}
5150

5251
# Publishes scdf package bundle as it needs to be in place
5352
# before repository bundle can be created.

.github/workflows/ci-carvel.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,6 @@ jobs:
6666
package-bundle-template: src/carvel/templates/bundle/package
6767
imgpkg-lock-template: src/carvel/templates/imgpkg
6868
config: src/carvel/config
69-
token: ${{ secrets.GITHUB_TOKEN }}
7069

7170
# Publishes scdf package bundle as it needs to be in place
7271
# before repository bundle can be created.

src/local/k8s/configure-k8s.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ set -e
1515
if [ "$K8S_DRIVER" = "" ]; then
1616
K8S_DRIVER=kind
1717
fi
18-
K8S_VERSION=1.24.6
18+
K8S_VERSION=1.24.10
1919
case "$K8S_DRIVER" in
2020
"kind")
2121
echo "Creating kind cluster"
@@ -38,7 +38,7 @@ case "$K8S_DRIVER" in
3838
fi
3939
;;
4040
*)
41-
echo "Creating Minikube cluster with $K8S_DRIVER"
41+
echo "Creating Minikube cluster with $K8S_DRIVER and k8s=$K8S_K8S_VERSION"
4242
# K8S_DRIVER=kvm2, docker, vmware, virtualbox, podman, vmwarefusion or hyperkit
4343
minikube start --cpus=8 --memory=16g "--driver=$K8S_DRIVER" "--kubernetes-version=$K8S_VERSION"
4444
echo -e "Please run ${bold}'minikube tunnel'${end} in a separate shell to ensure a LoadBalancer is active."

0 commit comments

Comments
 (0)