UNCLASSIFIED - NO CUI

Skip to content
Snippets Groups Projects
Unverified Commit 8a6c8926 authored by Andrew Shoell's avatar Andrew Shoell
Browse files

give that the istio stuff is part of BB i think it should stay

parent 361c6d6e
Branches master
No related tags found
1 merge request!16Update Ironbank
Pipeline #2344055 failed
This commit is part of merge request !16. Comments created here will be created in the context of that merge request.
......@@ -77,6 +77,16 @@ spec:
{{- end }}
containers:
- name: {{ .Chart.Name }}
{{ if .Values.istio.enabled }}
command: ["/bin/sh"]
args:
- -c
- >-
docker-entrypoint.sh;
x=$(echo $?);
curl -fsI -X POST http://localhost:15020/quitquitquit;
exit $x;
{{ end }}
image: "{{ .Values.image.registry }}/{{ .Values.image.repository }}:{{ .Values.image.tag }}"
imagePullPolicy: {{ .Values.image.pullPolicy }}
{{- if or .Values.cronjob.preCommand .Values.cronjob.postCommand}}
......
......@@ -59,6 +59,28 @@ networkPolicies:
- Add directory for network policies
- Add peer-authentication resource
### chart/templates/cronjob.yaml
- Merge this in
```yaml
spec:
jobTemplate:
spec:
template:
spec:
containers:
- name: {{ .Chart.Name }}
{{ if .Values.istio.enabled }}
command: ["/bin/sh"]
args:
- -c
- >-
docker-entrypoint.sh;
x=$(echo $?);
curl -fsI -X POST http://localhost:15020/quitquitquit;
exit $x;
{{ end }}
```
# Testing new Renovate Version
Identify a repository with a valid `renovate.json` to execute renovate against.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment