File tree 1 file changed +3
-1
lines changed
1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -27,14 +27,16 @@ jobs:
27
27
steps :
28
28
- name : Check out code into the Go module directory
29
29
uses : actions/checkout@v2
30
- - name : System tests
30
+ - name : Dry run examples
31
31
run : |
32
32
curl -s "https://raw.githubusercontent.com/kubernetes-sigs/kustomize/master/hack/install_kustomize.sh" | bash
33
33
export GOPATH=$HOME/go
34
34
export PATH=$PATH:$GOPATH/bin
35
35
make install-tools
36
36
kind create cluster --image kindest/node:v1.19.1
37
37
kubectl apply --validate=false -f https://github.com/jetstack/cert-manager/releases/latest/download/cert-manager.crds.yaml
38
+ # Create CRD PodMonitor without running Prometheus operator
39
+ curl https://raw.githubusercontent.com/prometheus-operator/prometheus-operator/master/bundle.yaml | sed "s/replicas: 1$/replicas: 0/" | kubectl apply -f -
38
40
make install
39
41
kubectl apply --dry-run=server --recursive -f docs/examples/
40
42
You can’t perform that action at this time.
0 commit comments