Skip to content

Commit e604699

Browse files
committed
remove deploy label prefix in apply function (sourcegraph#591)
1 parent 12e2043 commit e604699

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

kubectl-apply-all.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ apply () {
1616

1717
local FILES=`find ${DIR} -name "*.yaml" \( ! -name kustomization.yaml \) | tr "\n" "," | sed 's/,$/ /' | tr " " "\n"`
1818

19-
kubectl apply --prune -l deploy=${LABEL} -f ${FILES}
19+
kubectl apply --prune -l ${LABEL} -f ${FILES}
2020
}
2121

22-
apply base sourcegraph
22+
apply base deploy=sourcegraph

0 commit comments

Comments
 (0)