Kubernetes

Fix the following ReplicaSet definition

apiVersion: apps/v1
kind: ReplicaCet
metadata:
  name: redis
  labels:
    app: redis
    tier: cache
spec:
  selector:
    matchLabels:
      tier: cache
  template:
    metadata:
      labels:
        tier: cachy
    spec:
      containers:
      - name: redis
        image: redis

Difficulty: unrated

Source: bregman-arie/devops-exercises by Arie Bregman

Answer

kind should be ReplicaSet and not ReplicaCet :)