_apply.tpl 994 B

12345678910111213141516171819202122232425262728293031
  1. {{/* Loads all spawners */}}
  2. {{- define "ix.v1.common.loader.apply" -}}
  3. {{/* Render ConfigMap(s) */}}
  4. {{- include "ix.v1.common.spawner.configmap" . | nindent 0 -}}
  5. {{/* Render Certificate(s) */}}
  6. {{- include "ix.v1.common.spawner.certificate" . | nindent 0 -}}
  7. {{/* Render Secret(s) */}}
  8. {{- include "ix.v1.common.spawner.secret" . | nindent 0 -}}
  9. {{/* Render Image Pull Secrets(s) */}}
  10. {{- include "ix.v1.common.spawner.imagePullSecret" . | nindent 0 -}}
  11. {{/* Render Service Accounts(s) */}}
  12. {{- include "ix.v1.common.spawner.serviceAccount" . | nindent 0 -}}
  13. {{/* Render RBAC(s) */}}
  14. {{- include "ix.v1.common.spawner.rbac" . | nindent 0 -}}
  15. {{/* Render External Interface(s) */}}
  16. {{- include "ix.v1.common.spawner.externalInterface" . | nindent 0 -}}
  17. {{/* Render Workload(s) */}}
  18. {{- include "ix.v1.common.spawner.workload" . | nindent 0 -}}
  19. {{/* Render Services(s) */}}
  20. {{- include "ix.v1.common.spawner.service" . | nindent 0 -}}
  21. {{- end -}}