apiVersion: v1 kind: Namespace metadata: name: replicaset-example --- apiVersion: apps/v1 kind: ReplicaSet metadata: name: hello-replicaset namespace: replicaset-example spec: replicas: 3 selector: matchLabels: app: hello-replicaset template: metadata: labels: app: hello-replicaset spec: containers: - name: hello-service image: antsinmyey3sjohnson/hello-container-service@sha256:e9de17b4fbfc6a1f52d07609e285dab3818412016200f189c68e441bf23effb3 ports: - name: http containerPort: 8081 resources: limits: cpu: 200m memory: 128Mi