Skip to content

Commit

Permalink
fix: no-lb
Browse files Browse the repository at this point in the history
Signed-off-by: Alex Collins <[email protected]>
  • Loading branch information
alexec committed Mar 11, 2022
1 parent 251c619 commit c6a1ef5
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ jobs:
if: ${{ matrix.containerRuntimeExecutor != 'docker' }}
run: |
curl -s https://raw.githubusercontent.com/k3d-io/k3d/main/install.sh | bash
k3d cluster create --wait
k3d cluster create --wait --no-lb
- name: Update kubeconfig
run: |
echo "- name: fake_token_user" >> $KUBECONFIG
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -422,7 +422,7 @@ ifeq ($(PROFILE),multi-cluster)
# create a service account for the controller to use in the remote cluster
kubectl --context=cluster-1 create sa argo-cluster-0
kubectl --context=cluster-1 create clusterrole pod-reconciller --verb=create,patch,delete,list,watch --resource=pods,pods/exec
kubectl --context=cluster-1 create clusterrole workflowtaskresult-reconciller --verb=delete,list,watch --resource=workflowtaskresult
kubectl --context=cluster-1 create clusterrole workflowtaskresult-reconciller --verb=delete,list,watch --resource=workflowtaskresult.argoproj.io
kubectl --context=cluster-1 create clusterrolebinding argo-cluster-0-pod-reconciller --clusterrole=pod-reconciller --user=argo-cluster-0
kubectl --context=cluster-1 create clusterrolebinding argo-cluster-0-workflowtaskresult-reconciller --clusterrole=workflowtaskresult-reconciller --user=argo-cluster-0
# create a secret containing a kubeconfig for that user
Expand Down
2 changes: 1 addition & 1 deletion cmd/workflow-controller/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ package main
import (
"context"
"fmt"
"github.com/argoproj/argo-workflows/v3/pkg/apis/workflow/v1alpha1"
"net/http"
"os"
"strings"
Expand All @@ -28,6 +27,7 @@ import (
"k8s.io/client-go/tools/clientcmd"

"github.com/argoproj/argo-workflows/v3"
"github.com/argoproj/argo-workflows/v3/pkg/apis/workflow/v1alpha1"
wfclientset "github.com/argoproj/argo-workflows/v3/pkg/client/clientset/versioned"
cmdutil "github.com/argoproj/argo-workflows/v3/util/cmd"
"github.com/argoproj/argo-workflows/v3/util/logs"
Expand Down

0 comments on commit c6a1ef5

Please sign in to comment.