Skip to content

Commit 3dc1e59

Browse files
committed
Correct instructions on inclusion of CA cert
The entire PEM contents are needed. Perhaps some change in the underlying Kubernetes Client changed this requirement at some point
1 parent 175d68b commit 3dc1e59

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

docs/configure_cluster_profile.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
- namespace: list, get
1818
- pods, pods/log: *
1919
```
20-
7. Optionally, Specify `Cluster ca certificate data`.
20+
7. Optionally, Specify `Cluster CA certificate data`.
2121
2222
!["Kubernetes Cluster Profile"][1]
2323

src/main/resources/plugin-settings.template.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -124,11 +124,11 @@
124124
</div>
125125

126126
<div class="row">
127-
<label>Cluster ca certificate data</label>
127+
<label>Cluster CA certificate data</label>
128128
<textarea ng-model="kubernetes_cluster_ca_cert" rows="7"></textarea>
129129
<span class="form_error" ng-show="GOINPUTNAME[kubernetes_cluster_ca_cert].$error.server">{{GOINPUTNAME[kubernetes_cluster_ca_cert].$error.server}}</span>
130130
<label class="form-help-content">
131-
Kubernetes cluster ca certificate data. Do not provide <code> -----BEGIN * </code> and <code> -----END * </code> in your certificate data.
131+
Kubernetes cluster CA certificate data. Include the entire PEM contents, including <code> -----BEGIN * </code> and <code> -----END * </code>.
132132
</label>
133133
</div>
134134
</fieldset>

0 commit comments

Comments
 (0)