You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Configuration-SSO tab contain list of ingresses with oauth proxy annotation;
SSO section contain all ingresses from all namesapces;
user can set property to protect endpoint and EDP Portal edit ingress resource and add label:
if argocd use autosync it is no possible to set custom annotation for ingress;
kubectl annotate ingress nginx.ingress.kubernetes.io/auth-signin='https:///oauth2/start?rd=https://$host$request_uri' nginx.ingress.kubernetes.io/auth-url='http://oauth2-proxy.edp.svc.cluster.local:8080/oauth2/auth'
get kind: Ingress with 'metadata.annotation' pattern:
nginx.ingress.kubernetes.io/auth-signin:
nginx.ingress.kubernetes.io/auth-url:
in case if find objects - describe in table: 'ingress.metadata.name', ingress.metadata.annotations , ingress.spec.host (as hyperlink)
get ingresses from deployed envs;
as alternative - get all ingress object and find annotation with key and provide filed to add value for this field to enable protect;
The text was updated successfully, but these errors were encountered:
Acceptance Criteria:
Configuration-SSO tab contain list of ingresses with oauth proxy annotation;
SSO section contain all ingresses from all namesapces;
user can set property to protect endpoint and EDP Portal edit ingress resource and add label:
if argocd use autosync it is no possible to set custom annotation for ingress;
kubectl annotate ingress nginx.ingress.kubernetes.io/auth-signin='https:///oauth2/start?rd=https://$host$request_uri' nginx.ingress.kubernetes.io/auth-url='http://oauth2-proxy.edp.svc.cluster.local:8080/oauth2/auth'
annotations:
nginx.ingress.kubernetes.io/auth-signin: 'https:///oauth2/start?rd=https://$host$request_uri'
nginx.ingress.kubernetes.io/auth-url: 'http://oauth2-proxy.edp.svc.cluster.local:8080/oauth2/auth'
https://epam.github.io/edp-install/operator-guide/oauth2-proxy/?h=oauth+pro
Streps:
get kind: Ingress with 'metadata.annotation' pattern:
nginx.ingress.kubernetes.io/auth-signin:
nginx.ingress.kubernetes.io/auth-url:
in case if find objects - describe in table: 'ingress.metadata.name', ingress.metadata.annotations , ingress.spec.host (as hyperlink)
get ingresses from deployed envs;
as alternative - get all ingress object and find annotation with key and provide filed to add value for this field to enable protect;
The text was updated successfully, but these errors were encountered: