diff --git a/.github/workflows/test-k8s.yml b/.github/workflows/test-k8s.yml index a6a94ba..ea64a0c 100644 --- a/.github/workflows/test-k8s.yml +++ b/.github/workflows/test-k8s.yml @@ -5,12 +5,12 @@ on: paths: - k8s/** - Tiltfile - branches: [master] + branches: [main] push: paths: - k8s/** - Tiltfile - branches: [master] + branches: [main] jobs: cdk8s-tests: diff --git a/Tiltfile b/Tiltfile index 60233ca..06751bc 100644 --- a/Tiltfile +++ b/Tiltfile @@ -1,14 +1,11 @@ local("make dist", dir="k8s") # Create namespace if it doesn't exist -local( - "kubectl get namespace integration --no-headers || kubectl create namespace integration" -) +local("kubectl get namespace integration --no-headers || kubectl create namespace integration") k8s_yaml(listdir(os.path.join("k8s", "dist"))) k8s_resource( objects=[ - "licensing:namespace", "licensing:serviceaccount:licensing", "licensing:role:licensing", "licensing:rolebinding:licensing",