forked from kube-rs/kube
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add support for UTF-16 encoded kubeconfig files (kube-rs#1654)
* support for utf16 files Signed-off-by: goenning <[email protected]> * add test cases for utf16 Signed-off-by: goenning <[email protected]> --------- Signed-off-by: goenning <[email protected]>
- Loading branch information
1 parent
549496b
commit 255b49f
Showing
4 changed files
with
66 additions
and
3 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
Binary file not shown.
Binary file not shown.
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,19 @@ | ||
apiVersion: v1 | ||
clusters: | ||
- cluster: | ||
certificate-authority-data: aGVsbG8K | ||
server: https://0.0.0.0:6443 | ||
name: k3d-promstack | ||
contexts: | ||
- context: | ||
cluster: k3d-promstack | ||
user: admin@k3d-promstack | ||
name: k3d-promstack | ||
users: | ||
- name: admin@k3d-k3s-default | ||
user: | ||
client-certificate-data: aGVsbG8K | ||
client-key-data: aGVsbG8K | ||
current-context: k3d-promstack | ||
kind: Config | ||
preferences: {} |