mirror of
https://gitea.com/gitea/helm-actions.git
synced 2026-04-14 05:30:39 +00:00
Compare commits
1 Commits
christophe
...
5f2659600f
| Author | SHA1 | Date | |
|---|---|---|---|
| 5f2659600f |
@ -1,76 +0,0 @@
|
|||||||
on: pull_request
|
|
||||||
jobs:
|
|
||||||
k8s-test:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
env:
|
|
||||||
CLUSTER_NAME: test-cluster
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v4
|
|
||||||
|
|
||||||
- name: Install Docker CLI, kind, and kubectl
|
|
||||||
run: |
|
|
||||||
# Install Docker CLI (to talk to the host daemon via the mounted socket)
|
|
||||||
apt-get update && apt-get install -y docker.io jq
|
|
||||||
|
|
||||||
# Install kind
|
|
||||||
curl -Lo /usr/local/bin/kind https://kind.sigs.k8s.io/dl/v0.24.0/kind-linux-amd64
|
|
||||||
chmod +x /usr/local/bin/kind
|
|
||||||
|
|
||||||
# Install kubectl
|
|
||||||
curl -LO "https://dl.k8s.io/release/$(curl -L -s https://dl.k8s.io/release/stable.txt)/bin/linux/amd64/kubectl"
|
|
||||||
install kubectl /usr/local/bin/
|
|
||||||
|
|
||||||
- name: Create kind cluster
|
|
||||||
run: |
|
|
||||||
kind delete cluster test-cluster2
|
|
||||||
|
|
||||||
docker inspect ${CLUSTER_NAME}-control-plane && mkdir -p ~/.kube && kind get kubeconfig --name ${CLUSTER_NAME} > ~/.kube/config || kind create cluster --name ${CLUSTER_NAME} --wait 5m
|
|
||||||
|
|
||||||
- name: Connect kind to the job container's network and fix kubeconfig
|
|
||||||
if: always()
|
|
||||||
run: |
|
|
||||||
# 1. Find the Docker network the job container is on
|
|
||||||
# The job container's hostname is the container ID
|
|
||||||
JOB_CONTAINER_ID=$(hostname)
|
|
||||||
NETWORK_NAME=$(docker inspect "$JOB_CONTAINER_ID" \
|
|
||||||
--format '{{range $k, $v := .NetworkSettings.Networks}}{{$k}}{{end}}')
|
|
||||||
|
|
||||||
echo "NETWORK_NAME=$NETWORK_NAME" >> $GITHUB_ENV
|
|
||||||
|
|
||||||
echo "Job container network: $NETWORK_NAME"
|
|
||||||
|
|
||||||
# 2. Get the kind control-plane container name
|
|
||||||
KIND_CONTAINER="${CLUSTER_NAME}-control-plane"
|
|
||||||
|
|
||||||
echo "KIND_CONTAINER=$KIND_CONTAINER" >> $GITHUB_ENV
|
|
||||||
|
|
||||||
# 3. Connect the kind container to the same network
|
|
||||||
docker network connect "$NETWORK_NAME" "$KIND_CONTAINER"
|
|
||||||
|
|
||||||
# 4. Get the kind container's IP on that network
|
|
||||||
KIND_IP=$(docker inspect "$KIND_CONTAINER" \
|
|
||||||
--format "{{(index .NetworkSettings.Networks \"$NETWORK_NAME\").IPAddress}}")
|
|
||||||
|
|
||||||
echo "Kind container IP on shared network: $KIND_IP"
|
|
||||||
|
|
||||||
# 5. Rewrite the kubeconfig to use the kind container's IP
|
|
||||||
# kind's API server listens on port 6443 inside the container
|
|
||||||
kubectl config set-cluster kind-${CLUSTER_NAME} \
|
|
||||||
--server="https://${KIND_IP}:6443"
|
|
||||||
|
|
||||||
# 6. Since the TLS cert won't match the new IP, use insecure mode
|
|
||||||
# OR set insecure-skip-tls-verify
|
|
||||||
kubectl config set-cluster kind-${CLUSTER_NAME} \
|
|
||||||
--insecure-skip-tls-verify=true
|
|
||||||
|
|
||||||
- name: Verify cluster access
|
|
||||||
if: always()
|
|
||||||
run: |
|
|
||||||
kubectl cluster-info
|
|
||||||
kubectl get nodes
|
|
||||||
kubectl get pods -A
|
|
||||||
|
|
||||||
- name: Disconnect Kind Network
|
|
||||||
if: always()
|
|
||||||
run: |
|
|
||||||
docker network disconnect "$NETWORK_NAME" "$KIND_CONTAINER"
|
|
||||||
@ -7,7 +7,7 @@ on:
|
|||||||
|
|
||||||
env:
|
env:
|
||||||
# renovate: datasource=docker depName=alpine/helm
|
# renovate: datasource=docker depName=alpine/helm
|
||||||
HELM_VERSION: "3.20.0"
|
HELM_VERSION: "4.1.1"
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
generate-chart-publish:
|
generate-chart-publish:
|
||||||
@ -35,7 +35,7 @@ jobs:
|
|||||||
|
|
||||||
- name: Import GPG key
|
- name: Import GPG key
|
||||||
id: import_gpg
|
id: import_gpg
|
||||||
uses: https://github.com/crazy-max/ghaction-import-gpg@v7
|
uses: https://github.com/crazy-max/ghaction-import-gpg@v6
|
||||||
with:
|
with:
|
||||||
gpg_private_key: ${{ secrets.GPGSIGN_KEY }}
|
gpg_private_key: ${{ secrets.GPGSIGN_KEY }}
|
||||||
passphrase: ${{ secrets.GPGSIGN_PASSPHRASE }}
|
passphrase: ${{ secrets.GPGSIGN_PASSPHRASE }}
|
||||||
|
|||||||
@ -15,7 +15,7 @@ env:
|
|||||||
jobs:
|
jobs:
|
||||||
check-and-test:
|
check-and-test:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
container: alpine/helm:3.20.0
|
container: alpine/helm:4.1.1
|
||||||
steps:
|
steps:
|
||||||
- name: install tools
|
- name: install tools
|
||||||
run: |
|
run: |
|
||||||
|
|||||||
Reference in New Issue
Block a user