We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I've been struggling with adding the following annotations for my service type "LoadBalancer":
service.beta.kubernetes.io/aws-load-balancer-type: nlb service.beta.kubernetes.io/aws-load-balancer-nlb-target-type: instance service.beta.kubernetes.io/aws-load-balancer-scheme: internal service.beta.kubernetes.io/aws-load-balancer-internal: "true"
Is this supported yet, if yes/no how to achieve this? Please help me out.
The text was updated successfully, but these errors were encountered:
If someone else comes here in the near future, it can be achieved using the following code in service.yaml
service.yaml
apiVersion: v1 kind: Service metadata: name: {{ template "trino.fullname" . }} labels: app: {{ template "trino.name" . }} chart: {{ template "trino.chart" . }} release: {{ .Release.Name }} heritage: {{ .Release.Service }} {{- if .Values.service.annotations }} annotations: {{ toYaml .Values.service.annotations | indent 4 }} {{- end }} spec: type: {{ .Values.service.type }} ports: - port: {{ .Values.service.port }} targetPort: http protocol: TCP name: http selector: app: {{ template "trino.name" . }} release: {{ .Release.Name }} component: coordinator
Related -> PR
Sorry, something went wrong.
Need this too. I dont understand why its not merged if there's a PR available.
No branches or pull requests
I've been struggling with adding the following annotations for my service type "LoadBalancer":
Is this supported yet, if yes/no how to achieve this? Please help me out.
The text was updated successfully, but these errors were encountered: