Skip to content

Commit 0e84d29

Browse files
authored
Merge pull request #58 from jetstack/bump-to-cert-manager-1.4
Bump to cert-manager 1.4
2 parents 7d15ab5 + f76a8c0 commit 0e84d29

File tree

10 files changed

+792
-644
lines changed

10 files changed

+792
-644
lines changed

.gitattributes

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# The .t files are cram tests. The GitHub syntax highlighter [1] does not know
2+
# about the cram format and thinks they are Perl files. So we disabled the
3+
# GitHub highlighter altogether for these files.
4+
5+
*.t text linguist-language=Text
6+

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
ca.crt
22
ca.key
3+
*.t.err

chart/jetstack-secure-gcm/charts/google-cas-issuer/templates/crds.yaml

Lines changed: 293 additions & 191 deletions
Large diffs are not rendered by default.

chart/jetstack-secure-gcm/templates/application.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,6 @@ spec:
4444
url: https://cert-manager.io/docs/usage/
4545
- description: Getting Started with the Jetstack Secure Platform
4646
url: https://platform.jetstack.io/docs
47-
info: []
4847
notes: |-
4948
### Create your first certificate
5049

cloudbuild.yaml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ steps:
144144
name: gcr.io/cloud-builders/gcloud
145145
entrypoint: bash
146146
args:
147-
- -exc
147+
- -euc
148148
- |
149149
while : ; do
150150
kubectl get ns -oname 2>/dev/null | grep apptest- && break
@@ -158,6 +158,7 @@ steps:
158158
done
159159
pod=$(kubectl -n "$ns" get pods -oname | grep "apptest-.*-deployer" | cut -d/ -f2)
160160
161+
set -x
161162
kubectl wait -n "$ns" --for=condition=ready --timeout=5m pod $pod
162163
kubectl logs -n "$ns" $pod -f --tail=-1
163164
waitFor:
@@ -168,7 +169,7 @@ steps:
168169
name: gcr.io/cloud-builders/gcloud
169170
entrypoint: bash
170171
args:
171-
- -exc
172+
- -euc
172173
- |
173174
while : ; do
174175
kubectl get ns -oname 2>/dev/null | grep apptest- && break
@@ -181,6 +182,7 @@ steps:
181182
sleep 10
182183
done
183184
185+
set -x
184186
kubectl wait -n "$ns" --for=condition=ready --timeout=5m pod smoke-test-pod
185187
kubectl logs -n "$ns" smoke-test-pod -f --tail=-1
186188
waitFor:

0 commit comments

Comments
 (0)