Açıklama Yok

NOTES.txt 1.1KB

12345678910111213141516171819202122232425262728
  1. Release Name: {{ .Release.Name }}
  2. Chart Name: {{ .Chart.Name }}
  3. Chart Version: {{ .Chart.Version }}
  4. Chart Description: {{ .Chart.Description }}
  5. The following Kubernetes resources have been deployed:
  6. {{- if .Values.ingress.enabled }}
  7. Ingress:
  8. - Name: {{ .Release.Name }}-ingress
  9. Host: {{ index .Values.ingress.hosts 0 "host" }}
  10. Path: {{ index .Values.ingress.hosts 0 "paths" 0 "path" }}
  11. Service Name: {{ index .Values.ingress.hosts 0 "paths" 0 "serviceName" }}
  12. Service Port: {{ index .Values.ingress.hosts 0 "paths" 0 "servicePort" }}
  13. {{- end }}
  14. {{- if eq .Values.ingress.enabled true }}
  15. To access your application, ensure that the necessary configurations are set up in your cluster.
  16. - If you have DNS set up:
  17. - Access your application using the configured domain: http://{{ index .Values.ingress.hosts 0 "host" }}
  18. {{- else }}
  19. No Ingress resources deployed.
  20. {{- end }}
  21. Ensure that your application service ({{ index .Values.ingress.hosts 0 "paths" 0 "serviceName" }}) is up and running on port {{ index .Values.ingress.hosts 0 "paths" 0 "servicePort" }}.
  22. Happy exploring!