github.com/datadog/cilium@v1.6.12/examples/minikube/http-sw-app.yaml (about)

     1  ---
     2  apiVersion: v1
     3  kind: Service
     4  metadata:
     5    name: deathstar
     6  spec:
     7    type: ClusterIP
     8    ports:
     9    - port: 80
    10    selector:
    11      org: empire
    12      class: deathstar
    13  ---
    14  apiVersion: apps/v1
    15  kind: Deployment
    16  metadata:
    17    name: deathstar
    18  spec:
    19    replicas: 2
    20    selector:
    21      matchLabels:
    22        org: empire
    23        class: deathstar
    24    template:
    25      metadata:
    26        labels:
    27          org: empire
    28          class: deathstar
    29      spec:
    30        containers:
    31        - name: deathstar
    32          image: docker.io/cilium/starwars
    33  ---
    34  apiVersion: v1
    35  kind: Pod
    36  metadata:
    37    name: tiefighter
    38    labels:
    39      org: empire
    40      class: tiefighter
    41  spec:
    42    containers:
    43    - name: spaceship
    44      image: docker.io/tgraf/netperf
    45  ---
    46  apiVersion: v1
    47  kind: Pod
    48  metadata:
    49    name: xwing
    50    labels:
    51      org: alliance
    52      class: xwing
    53  spec:
    54    containers:
    55    - name: spaceship
    56      image: docker.io/tgraf/netperf