-
-
Notifications
You must be signed in to change notification settings - Fork 64
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
NGINX Identity Aware Proxy #202
base: master
Are you sure you want to change the base?
Conversation
… templates to follow
- adds required nginx resolver - adds required oauth2 whitelist_domain - builds internal service hostname from reordered original hostname
@@ -0,0 +1,4 @@ | |||
apiVersion: v1 | |||
description: A Helm chart for Kubernetes |
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.
update description
@@ -0,0 +1,26 @@ | |||
kind: Pod |
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.
are the files in pr123
folder just examples?
how they are going to be deployed?
maybe just move to examples in README?
|
||
{{/* | ||
Create a default fully qualified oauth name. | ||
We limit this value to 24 chars because some Kubernetes name fields are limited to this (by the DNS naming spec). |
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.
no trunc 24
here, should add it or update the description
We limit this value to 24 chars because some Kubernetes name fields are limited to this (by the DNS naming spec). | ||
*/}} | ||
{{- define "fullname_oauth" -}} | ||
{{- printf "%.17s-oauth" .Release.Name | trimSuffix "-" -}} |
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.
what is 17
?
|
||
{{/* | ||
Create a default fully qualified proxy name. | ||
We truncate at 24 chars because some Kubernetes name fields are limited to this (by the DNS naming spec). |
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.
no trunc 24
here, should add it or update the description
{{- end -}} | ||
|
||
{{/* | ||
Create a default fully qualified proxy name. |
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.
Create a default fully qualified proxy name. | |
Create a default fully qualified ingress name. |
|
||
{{/* | ||
Create a default fully qualified proxy name. | ||
We truncate at 24 chars because some Kubernetes name fields are limited to this (by the DNS naming spec). |
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.
no trunc 24
here, should add it or update the description
We truncate at 24 chars because some Kubernetes name fields are limited to this (by the DNS naming spec). | ||
*/}} | ||
{{- define "fullname_ingress" -}} | ||
{{- printf "%.16s-ingress" .Release.Name | trimSuffix "-" -}} |
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.
what is 16s
?
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.
see comments
No description provided.