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
Copy file name to clipboardExpand all lines: content/docs/trust/trust-manager/README.md
+7Lines changed: 7 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -104,6 +104,11 @@ spec:
104
104
# here named "bundle.jks" and "bundle.p12".
105
105
configMap:
106
106
key: "root-certs.pem"
107
+
metadata:
108
+
annotations:
109
+
argocd.argoproj.io/sync-wave: "1"
110
+
labels:
111
+
app.kubernetes.io/component: "trust-bundle"
107
112
additionalFormats:
108
113
jks:
109
114
key: "bundle.jks"
@@ -146,6 +151,8 @@ Support for `Secret` targets must be explicitly enabled in the trust-manager con
146
151
All `Bundle` targets are written to `ConfigMap`s (and/or `Secret`s) whose name matches that of the
147
152
`Bundle`, and every target has a PEM-formatted bundle included.
148
153
154
+
The annotations and labels for the target `ConfigMap`s (and/or `Secret`s) can be specified using `spec.target.configMap.metadata.annotations` and `spec.target.configMap.metadata.labels` (swapping `secret` for `configMap` where appropriate).
155
+
149
156
Users can also optionally choose to write JKS/PKCS#12 formatted binary trust store(s) to targets.
150
157
JKS has been supported since v0.5.0, and PKCS#12 since v0.7.0.
Copy file name to clipboardExpand all lines: package.json
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -23,7 +23,7 @@
23
23
"check": "concurrently --group --timings npm:check:* # Run all the npm check:* scripts in parallel",
24
24
"check:next-lint": "next lint",
25
25
"check:links": "find content/docs -type f -name '*.md' | xargs markdown-link-check --quiet --config markdown-link-check.json 2>&1 | awk -v RS=FILE: '/ERROR/{f=1; print RS $0} END{exit f}' # Split into records based on the word FILE and print only records containing word ERROR",
26
-
"check:spelling": "FORCE_COLOR=1 mdspell --report --en-us --ignore-numbers --ignore-acronyms 'content/**/*.md' 'content/**/*.html' '_layouts/*.html' '_includes/*.html' '*.html' '!**/api-docs.md' '!content/*docs/policy/approval/approver-policy/api-reference.md' # Force color output in mdspell. # See https://github.com/lukeapage/node-markdown-spellcheck/issues/36#issuecomment-482649408 ",
26
+
"check:spelling": "FORCE_COLOR=1 mdspell --report --en-us --ignore-numbers --ignore-acronyms 'content/**/*.md' 'content/**/*.html' '_layouts/*.html' '_includes/*.html' '*.html' '!**/api-docs.md' '!content/*docs/policy/approval/approver-policy/api-reference.md' '!content/*docs/trust/trust-manager/api-reference.md' # Force color output in mdspell. # See https://github.com/lukeapage/node-markdown-spellcheck/issues/36#issuecomment-482649408 ",
0 commit comments