Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: add secret for node-agent websocket auth #502

Merged
merged 1 commit into from
Apr 30, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions deploy/virtual-cluster-operator.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
---
apiVersion: v1
kind: Namespace
metadata:
name: kosmos-system
---
apiVersion: v1
kind: ServiceAccount
metadata:
Expand Down Expand Up @@ -320,6 +326,7 @@ apiVersion: apps/v1
kind: DaemonSet
metadata:
name: node-agent
namespace: kosmos-system
spec:
selector:
matchLabels:
Expand Down Expand Up @@ -394,6 +401,7 @@ apiVersion: v1
kind: Secret
metadata:
name: node-agent-secret
namespace: kosmos-system
type: kubernetes.io/basic-auth
data:
username: {{ .USERNAME }}
Expand Down
Loading