Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • Code Block
    themeMidnight
    titlek8s-deploy.yml
    linenumberstrue
    ---
      apiVersion: apps/v1
      kind: Deployment
      metadata:
        name: redis
      spec:
        selector:
          matchLabels:
            app: redis
        replicas: 1
        template:
          metadata:
            labels:
              app: redis
          spec:
            containers:
            - name: redis
              image: redis
              ports:
              - containerPort: 6379
    ---
    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: webfluxspring-demo
    spec:
      selector:
        matchLabels:
          app: webfluxspring-demo
      replicas: 3
      template:
        metadata:
          labels:
            app: webfluxspring-demo
        spec:
          containers:
          - name: reactorspring-demo
            image: sooabia/webfluxspring-demo:1.0
            ports:
            - containerPort: 8080
    --- 
    kind: Service
    apiVersion: v1
    metadata:
      name: spring-service
    spec:
      selector:
        app: webfluxspring-demo
      ports:
      - protocol: TCP
        port: 80
        targetPort: 8080
      type: LoadBalancer
    --- 
    kind: Service
    apiVersion: v1
    metadata:
      name: redis
    spec:
      selector:
        app: redis
      ports:
      - protocol: TCP
        port: 6379
        targetPort: 6379
      type: ClusterIP

...