Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ jobs:
if [ "$CLUSTER" = "prod" ]; then
linode-cli lke kubeconfig-view 326609 --json | jq -r .[0].kubeconfig | base64 -d > ~/.kube/config
else
echo ${NINJA_KUBECONFIG} > ~/.kube/config
echo "${NINJA_KUBECONFIG}" > ~/.kube/config
fi
kubectl get nodes
echo "deploy docker image"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,6 @@ jobs:
run: |
echo "connect to cluster"
mkdir -p ~/.kube
echo ${NINJA_KUBECONFIG} > ~/.kube/config
echo "${NINJA_KUBECONFIG}" > ~/.kube/config
kubectl get nodes
make deploy-to-linode
Loading