Compare commits

...

3 Commits

Author SHA1 Message Date
Danny Bessems 15daa960c2 chore(release): 0.8.2 [skip ci]
## [0.8.2](https://code.spamasaurus.com/djpbessems/ContainerImage.JSONServer/compare/v0.8.1...v0.8.2) (2023-07-16)

### Bug Fixes

* Remove race condition when testing target url ([105bc71](105bc71e9c))
* Set filemode per key ([a6d6e91](a6d6e91ffa))
2023-07-16 09:48:56 +00:00
Danny Bessems 105bc71e9c fix: Remove race condition when testing target url
continuous-integration/drone/push Build is passing Details
2023-07-16 11:46:17 +02:00
Danny Bessems a6d6e91ffa fix: Set filemode per key 2023-07-16 11:45:19 +02:00
3 changed files with 19 additions and 4 deletions

View File

@ -1,3 +1,11 @@
## [0.8.2](https://code.spamasaurus.com/djpbessems/ContainerImage.JSONServer/compare/v0.8.1...v0.8.2) (2023-07-16)
### Bug Fixes
* Remove race condition when testing target url ([105bc71](https://code.spamasaurus.com/djpbessems/ContainerImage.JSONServer/commit/105bc71e9c16ebf9afa5a4027d1131f311a76c5e))
* Set filemode per key ([a6d6e91](https://code.spamasaurus.com/djpbessems/ContainerImage.JSONServer/commit/a6d6e91ffadd13650c0ce44d0c43e96dea3c6711))
## [0.8.1](https://code.spamasaurus.com/djpbessems/ContainerImage.JSONServer/compare/v0.8.0...v0.8.1) (2023-07-14)

View File

@ -64,8 +64,8 @@ data:
esac
done
[ $(curl -kLs -w "%{http_code}" -o /dev/null https://$URL) != 200 ] && {
echo 'Could not connect to' $URL
[[ $(getent hosts $URL) ]] || {
echo 'Could not resolve' $URL
exit 1
}

View File

@ -60,18 +60,25 @@ spec:
resources:
{{- toYaml .Values.resources | nindent 12 }}
command:
- /bin/sh
- /bin/bash
- -c
- "/opt/update.sh -u {{ .Values.sidecar.targetUrl }}"
volumeMounts:
- name: {{ .Release.Name }}-configmap
mountPath: /opt/update.sh
subPath: update.sh
defaultMode: 0744
volumes:
- name: {{ .Release.Name }}-configmap
configMap:
name: {{ .Release.Name }}-configmap
items:
- key: db.json
path: db.json
- key: index.html
path: index.html
- key: update.sh
path: update.sh
mode: 0744
{{- with .Values.nodeSelector }}
nodeSelector:
{{- toYaml . | nindent 8 }}