feat: ssh support auth gssapi #504
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
image: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Go | |
uses: actions/setup-go@v2 | |
with: | |
go-version: '1.20' | |
check-latest: true | |
- name: Push image to docker hub | |
run: | | |
echo ${{ secrets.DOCKER_PASSWORD }} | docker login -u ${{ secrets.DOCKER_USER }} --password-stdin | |
docker buildx create --use | |
export VERSION=test | |
make container | |
linux: | |
runs-on: ubuntu-latest | |
needs: [ "image" ] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Go | |
uses: actions/setup-go@v2 | |
with: | |
go-version: '1.20' | |
check-latest: true | |
- name: Setup Minikube | |
id: minikube | |
timeout-minutes: 30 | |
uses: medyagh/setup-minikube@master | |
with: | |
cache: true | |
- name: Kubernetes info | |
run: | | |
kubectl cluster-info | |
cat ~/.kube/config | |
kubectl get pods -n kube-system -o wide | |
- name: Install demo bookinfo | |
run: | | |
minikube image load --remote istio/examples-bookinfo-details-v1:1.16.2 | |
minikube image load --remote istio/examples-bookinfo-ratings-v1:1.16.2 | |
minikube image load --remote istio/examples-bookinfo-reviews-v1:1.16.2 | |
minikube image load --remote istio/examples-bookinfo-productpage-v1:1.16.2 | |
minikube image load --remote naison/authors:latest | |
minikube image load --remote nginx:latest | |
minikube image load --remote naison/kubevpn:test | |
minikube image ls | |
eval $(minikube docker-env) | |
kubectl apply -f https://raw.githubusercontent.com/KubeNetworks/kubevpn/master/samples/bookinfo.yaml | |
- name: Build | |
run: | | |
export VERSION=test | |
make kubevpn-linux-amd64 | |
chmod +x ./bin/kubevpn | |
cp ./bin/kubevpn /usr/local/bin/kubevpn | |
kubevpn version | |
- name: Wait for pods reviews to be ready | |
run: | | |
kubectl wait pods -l app=reviews --for=condition=Ready --timeout=3600s | |
kubectl wait pods -l app=productpage --for=condition=Ready --timeout=3600s | |
kubectl get svc -A -o wide | |
kubectl get pod -A -o wide | |
kubectl get all -o wide | |
kubectl get nodes -o yaml | |
ifconfig | |
route -n | |
sudo ln /usr/bin/resolvectl /usr/bin/systemd-resolve | |
- name: Test | |
run: go test -v -failfast ./... -timeout=60m | |
macos: | |
runs-on: macos-latest | |
needs: [ "image" ] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Go | |
uses: actions/setup-go@v2 | |
with: | |
go-version: '1.20' | |
check-latest: true | |
- name: Set up Docker | |
uses: crazy-max/[email protected] | |
- name: Install minikube | |
run: | | |
set -x | |
docker version | |
brew install minikube | |
minikube start --driver=docker | |
kubectl get pod -A -o wide | |
minikube kubectl -- get pod -A -o wide | |
- name: Kubernetes info | |
run: | | |
kubectl cluster-info | |
cat ~/.kube/config | |
kubectl get pods -n kube-system -o wide | |
- name: Install demo bookinfo | |
run: | | |
minikube image load --remote istio/examples-bookinfo-details-v1:1.16.2 | |
minikube image load --remote istio/examples-bookinfo-ratings-v1:1.16.2 | |
minikube image load --remote istio/examples-bookinfo-reviews-v1:1.16.2 | |
minikube image load --remote istio/examples-bookinfo-productpage-v1:1.16.2 | |
minikube image load --remote naison/authors:latest | |
minikube image load --remote nginx:latest | |
minikube image load --remote naison/kubevpn:test | |
minikube image ls | |
eval $(minikube docker-env) | |
kubectl apply -f https://raw.githubusercontent.com/KubeNetworks/kubevpn/master/samples/bookinfo.yaml | |
- name: Build | |
run: | | |
export VERSION=test | |
make kubevpn-darwin-amd64 | |
chmod +x ./bin/kubevpn | |
cp ./bin/kubevpn /usr/local/bin/kubevpn | |
kubevpn version | |
- name: Wait for pods reviews to be ready | |
run: | | |
kubectl wait pods -l app=reviews --for=condition=Ready --timeout=3600s | |
kubectl wait pods -l app=productpage --for=condition=Ready --timeout=3600s | |
kubectl get svc -A -o wide || true | |
kubectl get pod -A -o wide || true | |
kubectl get all -o wide || true | |
kubectl get nodes -o yaml || true | |
ifconfig | |
netstat -anr | |
- name: Test | |
run: go test -v -failfast ./... -timeout=60m | |
windows: | |
runs-on: windows-latest | |
needs: [ "image" ] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Go | |
uses: actions/setup-go@v2 | |
with: | |
go-version: '1.20' | |
- name: Set up Docker | |
uses: crazy-max/[email protected] | |
- run: | | |
docker info --format '{{.OSType}}' | |
- run: | | |
choco install minikube | |
minikube start --driver=docker | |
choco install make | |
- name: Build | |
run: make kubevpn-windows-amd64 | |
upload-coverage-reports-to-codecov: | |
runs-on: ubuntu-latest | |
if: ${{ always() }} | |
needs: [ "linux", "macos", "windows" ] | |
steps: | |
- name: Upload coverage reports to Codecov | |
uses: codecov/codecov-action@v3 | |
env: | |
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} |