You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
603 B
18 lines
603 B
apiVersion: apps/v1
|
|
kind: Deployment
|
|
metadata:
|
|
name: istiod
|
|
namespace: istio-system
|
|
spec:
|
|
template:
|
|
spec:
|
|
containers:
|
|
- name: discovery
|
|
env:
|
|
# Istio will refresh the JWT Public Keys provided with
|
|
# RequestAuthentication by default every 20 minutes. For deployment
|
|
# from scratch this is not ideal because there is a high chance that
|
|
# the istiod will be available before dex is available, triggering
|
|
# Istio mechanism to use a placeholder jwt until refreshed.
|
|
- name: PILOT_JWT_PUB_KEY_REFRESH_INTERVAL
|
|
value: "1m"
|
|
|