github.com/Racer159/jackal@v0.32.7-0.20240401174413-0bd2339e4f2e/src/test/packages/25-manifest-adoption/deployment.yaml (about)

     1  apiVersion: v1
     2  kind: Namespace
     3  metadata:
     4    name: dos-games
     5  ---
     6  # This is a normal deployment manifest for dos-games that should be "adopted" by Helm/Jackal
     7  apiVersion: apps/v1
     8  kind: Deployment
     9  metadata:
    10    name: game
    11    namespace: dos-games
    12  spec:
    13    selector:
    14      matchLabels:
    15        app: game
    16    template:
    17      metadata:
    18        labels:
    19          app: game
    20      spec:
    21        containers:
    22          - name: multi-game
    23            image: "Racer159/jackal-game:multi-tile-dark"
    24            ports:
    25              - name: http
    26                containerPort: 8000
    27                protocol: TCP
    28            resources:
    29              requests:
    30                memory: "32Mi"
    31                cpu: "50m"
    32              limits:
    33                memory: "128Mi"
    34                cpu: "250m"