From 3ec1a68193def72c6f88030e083e83c5505d3090 Mon Sep 17 00:00:00 2001 From: Yuli Date: Wed, 23 Feb 2022 21:48:53 +0200 Subject: [PATCH 1/4] Update README.md --- README.md | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index a70f2ac..03dfde2 100644 --- a/README.md +++ b/README.md @@ -32,12 +32,6 @@ GDPR statement: *Personal data should be processed in a manner that ensures appr confidentiality of the personal data, including for preventing unauthorized access to or use of personal data and the equipment used for the processing.* - -## ⭐⭐⭐ Spread a word to make a world a bit safer with Databunker -![Databunker](https://databunker.org/img/databunker.png) - -Help us to raise awareness. Please add a ⭐ **star** and share this project with your friends. - #### Diagram of old-style solution. ![picture](images/old-style-solution.png) @@ -241,3 +235,8 @@ Give us a ⭐ **star** if you like our product. If you have any questions, you can contact the development team at office@privacybunker.io. Join the project slack channel to talk with developers: [https://databunker.slack.com/](https://join.slack.com/t/databunker/shared_invite/zt-b6ukxzw3-JCxv8NJDESL40haM45RNIA) + +# ⭐ Spread a word to make a world a bit safer with Databunker +![Databunker](https://databunker.org/img/databunker.png) + +Help us to raise awareness. Please add a ⭐ **star** and share this project with your friends. From a293d7a6b46938a5007ebddc59fcd25aafd4d16b Mon Sep 17 00:00:00 2001 From: Yuli Date: Thu, 24 Feb 2022 01:30:43 +0200 Subject: [PATCH 2/4] Update README.md --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 03dfde2..81b042b 100644 --- a/README.md +++ b/README.md @@ -212,6 +212,7 @@ Detailed information can be found at https://databunker.org/use-case/ # Blog posts, articles, or other resources that talk about Databunker: +1. https://oppetmoln.se/20220223/databunker-en-oppen-losning-for-gdpr-saker-lagring-av-kundinformation/ 1. https://privacybunker.io/blog/gdpr-guide-for-startup-founders/ 1. https://dbweekly.com/issues/348 1. https://www.freecodecamp.org/news/how-to-stay-gdpr-compliant-with-access-logs/ From 5ac9d188b7464acf03a6974fe6c8bc1efeb89288 Mon Sep 17 00:00:00 2001 From: root Date: Thu, 24 Feb 2022 18:04:05 +0000 Subject: [PATCH 3/4] fix liveness protocol --- charts/databunker/templates/deployment.yaml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/charts/databunker/templates/deployment.yaml b/charts/databunker/templates/deployment.yaml index 4b6cc59..c185f91 100644 --- a/charts/databunker/templates/deployment.yaml +++ b/charts/databunker/templates/deployment.yaml @@ -183,7 +183,11 @@ spec: livenessProbe: httpGet: path: {{ .Values.livenessProbe.path }} + {{- if (or .Values.certificates.customCAs .Values.certificates.customCertificate.certificateSecret) }} scheme: HTTPS + {{- else }} + scheme: HTTP + {{- end }} port: https initialDelaySeconds: {{ .Values.livenessProbe.initialDelaySeconds }} periodSeconds: {{ .Values.livenessProbe.periodSeconds }} @@ -197,7 +201,11 @@ spec: readinessProbe: httpGet: path: {{ .Values.readinessProbe.path }} + {{- if (or .Values.certificates.customCAs .Values.certificates.customCertificate.certificateSecret) }} scheme: HTTPS + {{- else }} + scheme: HTTP + {{- end }} port: https initialDelaySeconds: {{ .Values.readinessProbe.initialDelaySeconds }} periodSeconds: {{ .Values.readinessProbe.periodSeconds }} @@ -211,7 +219,11 @@ spec: startupProbe: httpGet: path: {{ .Values.startupProbe.path }} + {{- if (or .Values.certificates.customCAs .Values.certificates.customCertificate.certificateSecret) }} scheme: HTTPS + {{- else }} + scheme: HTTP + {{- end }} port: https httpHeaders: - name: Host From a320656a643c68996a96b011973b26ab44711b16 Mon Sep 17 00:00:00 2001 From: root Date: Thu, 24 Feb 2022 18:47:45 +0000 Subject: [PATCH 4/4] update chart version --- charts/databunker/Chart.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/charts/databunker/Chart.yaml b/charts/databunker/Chart.yaml index 7ea3a4a..b1f20c3 100644 --- a/charts/databunker/Chart.yaml +++ b/charts/databunker/Chart.yaml @@ -33,4 +33,4 @@ name: databunker sources: - https://github.com/securitybunker/databunker - https://databunker.org/ -version: 1.0.16 +version: 1.0.17