Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

🚧 Allow Kinto to pull images from external repo #29

Merged
merged 1 commit into from
Mar 4, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apiVersion: v2
name: kinto
home: https://www.kintohub.com/
version: 0.3.1
version: 0.4.0
description: All-in-one deployment platform designed for fullstack developers
dependencies:
- name: nginx-ingress-controller
Expand Down
4 changes: 4 additions & 0 deletions templates/NOTES.txt
Original file line number Diff line number Diff line change
Expand Up @@ -44,4 +44,8 @@ SETUP:

4. Reach out to us on `https://slack.kintohub.com` if you have any issues.

Notes: if NetworkPolicies are enabled on your cluster, you need 'whitelist' the kintohub namespaces so that they can access your environments.
Run `kubectl get networkpolicies`. If it does not error, that means that NetworkPolicies are enabled.
If enabled, run `kubectl label ns kube-system argo cert-manager kintohub owner=kintohub --overwrite`.

######################################
8 changes: 8 additions & 0 deletions templates/core-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,14 @@ spec:
value: "{{ .Values.common.domainName }}"
- name: SSL_ENABLED
value: "{{ .Values.common.ssl.enabled }}"
- name: KINTO_CORE_NAMESPACE
value: {{ .Release.Namespace }}
- name: KINTO_BUILDER_DOCKER_SECRET
{{- if empty .Values.builder.workflow.docker.existingSecret }}
value: {{ template "kinto.workflow.fullname" . }}-docker
{{- else }}
value: {{ .Values.builder.workflow.docker.existingSecret }}
{{- end }}
{{- if .Values.common.ssl.enabled }}
- name: CERT_MANAGER_ISSUER_EMAIL
value: "{{ .Values.common.ssl.issuer.email }}"
Expand Down