mirror of
https://github.com/YuzuZensai/netbird-kubernetes-operator.git
synced 2026-09-13 18:59:09 +00:00
35 lines
523 B
YAML
35 lines
523 B
YAML
apiVersion: netbird.io/v1alpha1
|
|||
|
|
kind: SetupKey
|
||
|
|
metadata:
|
||
|
|
name: sidecar
|
||
|
|
namespace: default
|
||
|
|
spec:
|
||
|
|
name: sidecar
|
||
|
|
ephemeral: true
|
||
|
|
---
|
||
|
|
apiVersion: netbird.io/v1alpha1
|
||
|
|
kind: SidecarProfile
|
||
|
|
metadata:
|
||
|
|
name: test
|
||
|
|
namespace: default
|
||
|
|
spec:
|
||
|
|
setupKeyRef:
|
||
|
|
name: sidecar
|
||
|
|
podSelector:
|
||
|
|
matchLabels:
|
||
|
|
app: ubuntu
|
||
|
|
---
|
||
|
|
apiVersion: v1
|
||
|
|
kind: Pod
|
||
|
|
metadata:
|
||
|
|
name: ubuntu
|
||
|
|
namespace: default
|
||
|
|
labels:
|
||
|
|
app: ubuntu
|
||
|
|
spec:
|
||
|
|
containers:
|
||
|
|
- name: ubuntu
|
||
|
|
image: ubuntu:latest
|
||
|
|
command: ["sleep", "infinity"]
|
||
|
|
|