mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-09-25 12:17:52 +00:00
21 lines
356 B
YAML
21 lines
356 B
YAML
apiVersion: v1
|
|
kind: ReplicationController
|
|
metadata:
|
|
name: test-rc
|
|
labels:
|
|
name: test-rc
|
|
spec:
|
|
replicas: 1
|
|
template:
|
|
metadata:
|
|
labels:
|
|
name: test-rc
|
|
spec:
|
|
containers:
|
|
- name: test-rc
|
|
image: nginx
|
|
args:
|
|
- -random_flag=%s@domain.com
|
|
ports:
|
|
- containerPort: 80
|