-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix/CON-26232_namespace_changed (#133)
* Update NOTES.txt * Update Chart.yaml * Update README.md * Update NOTES.txt use on the fly values * base no namespace change * run over ctrlv2 with kubesystem * pass lint * pass lint 2 * change cm ,secret file name * pass lint
- Loading branch information
1 parent
723ab92
commit c036338
Showing
6 changed files
with
43 additions
and
9 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
Thank you for installing spotinst-ocean-network-client | ||
Thank you for installing {{ .Release.Name }}. | ||
|
||
Please make sure that each node in your cluster has the Network-Client DaemonSet running: | ||
|
||
$ kubectl get daemonset spotinst-ocean-network-client -n kube-system | ||
$ kubectl get daemonset {{ .Release.Name }} -n {{ .Values.namespace }} | ||
|
||
The collection of the data has already begun, you can see the data in our UI console or via API in 2-3 hours. | ||
The collection of the data has already begun, you can see the data in our UI console or via API in 2-3 hours. |
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,7 @@ | ||
apiVersion: v1 | ||
kind: ConfigMap | ||
metadata: | ||
name: {{ include "ocean-network-client.configMapName" . }} | ||
namespace: {{ include "ocean-network-client.namespace" . }} | ||
data: | ||
spotinst.cluster-identifier: {{ required "`spotinst.clusterIdentifier` must be specified" .Values.spotinst.clusterIdentifier }} |
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,10 @@ | ||
apiVersion: v1 | ||
kind: Secret | ||
metadata: | ||
name: {{ include "ocean-network-client.secretName" . }} | ||
namespace: {{ include "ocean-network-client.namespace" . }} | ||
type: Opaque | ||
data: | ||
token: {{ required "`spotinst.token` must be specified" .Values.spotinst.token | b64enc }} | ||
account: {{ required "`spotinst.account` must be specified" .Values.spotinst.account | b64enc }} | ||
|
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