-
Notifications
You must be signed in to change notification settings - Fork 73
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #359 from SgtCoDFish/dynamic-istiod
Add ability to dynamically configure istiod cert
- Loading branch information
Showing
21 changed files
with
1,072 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
replicaCount: 2 | ||
|
||
service: | ||
port: 443 | ||
type: NodePort | ||
nodePort: 30443 | ||
|
||
app: | ||
logFormat: json | ||
logLevel: 5 | ||
|
||
certmanager: | ||
namespace: istio-system | ||
# WARNING: do not enable this option in production, or environments with | ||
# any non-trivial number of workloads for an extended period of time. Doing | ||
# so will balloon the resource consumption of both ETCD and the API server, | ||
# leading to errors and slow down. This option is intended for debugging | ||
# purposes only, for limited periods of time. | ||
preserveCertificateRequests: true | ||
additionalAnnotations: | ||
- name: custom.cert-manager.io/policy-name | ||
value: istio-csr | ||
issuer: | ||
# Explicitly blanked out to test "pure" runtime configuration | ||
group: "" | ||
kind: "" | ||
name: "" | ||
|
||
tls: | ||
trustDomain: foo.bar | ||
istiodCertificateEnable: "dynamic" | ||
certificateDuration: 20s | ||
certificateDNSNames: | ||
# Name used by the e2e client | ||
- istio-csr.cert-manager.svc | ||
# Name used within the demo cluster | ||
- cert-manager-istio-csr.cert-manager.svc | ||
|
||
server: | ||
maxCertificateDuration: 5m | ||
serving: | ||
address: 0.0.0.0 | ||
port: 6443 | ||
|
||
resources: {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.