-
Notifications
You must be signed in to change notification settings - Fork 71
feat: add option to specify the clusterIP of OpenFGA service #264
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
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -10,14 +10,17 @@ metadata: | |
| {{- end }} | ||
| spec: | ||
| type: {{ .Values.service.type }} | ||
| {{- if .Values.service.clusterIP }} | ||
| clusterIP: {{ .Values.service.clusterIP }} | ||
| {{- end }} | ||
|
Comment on lines
+13
to
+15
|
||
| ports: | ||
| - name: grpc | ||
| port: {{ (split ":" .Values.grpc.addr)._1 }} | ||
| targetPort: grpc | ||
| protocol: TCP | ||
|
|
||
| {{- if .Values.http.enabled }} | ||
| - name: http | ||
| - name: http | ||
| port: {{ (split ":" .Values.http.addr)._1 }} | ||
| targetPort: http | ||
| protocol: TCP | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The service template references
.Values.service.clusterIPbut this field has not been added to the values.yaml file. Users will not be able to configure this setting without adding it to the values.yaml file. Add aclusterIPfield under theservicesection in values.yaml with appropriate documentation.