common.yaml 707 B

123456789101112131415
  1. {{- include "ix.v1.common.loader.init" . -}}
  2. {{/* Merge the templates with Values */}}
  3. {{- $_ := mustMergeOverwrite .Values (include "homepage.workload" $ | fromYaml) -}}
  4. {{- $_ := mustMergeOverwrite .Values (include "homepage.persistence" $ | fromYaml) -}}
  5. {{- $_ := mustMergeOverwrite .Values (include "homepage.service" $ | fromYaml) -}}
  6. {{/* FIXME: https://github.com/benphelps/homepage/pull/1627
  7. Currently it fills logs with errors failing to retrieve ingresses / traefik ingresses
  8. {{- $_ := mustMergeOverwrite .Values (include "homepage.rbac" $ | fromYaml) -}}
  9. */}}
  10. {{/* Create the configmap for portal manually*/}}
  11. {{- include "homepage.portal" $ -}}
  12. {{- include "ix.v1.common.loader.apply" . -}}