PHP Classes

File: deploy/redis/redis-slave-deployment.yaml

Recommend this page to a friend!
  Classes of Nahidul Hasan   Laravel Docker Kubernetes   deploy/redis/redis-slave-deployment.yaml   Download  
File: deploy/redis/redis-slave-deployment.yaml
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Laravel Docker Kubernetes
Run a Laravel project using Docker and Kubernetes
Author: By
Last change:
Date: 2 years ago
Size: 1,217 bytes
 

Contents

Class file image Download
apiVersion: apps/v1beta1 kind: Deployment metadata: name: redis-slave namespace: hermes # these labels can be applied automatically # from the labels in the pod template if not set # labels: # app: redis # role: slave # tier: backend spec: # this replicas value is default # modify it according to your case replicas: 1 # selector can be applied automatically # from the labels in the pod template if not set # selector: # matchLabels: # app: guestbook # role: slave # tier: backend template: metadata: labels: app: redis role: slave tier: backend spec: containers: - name: slave image: gcr.io/google_samples/gb-redisslave:v1 resources: requests: cpu: 100m memory: 100Mi env: - name: GET_HOSTS_FROM value: dns # If your cluster config does not include a dns service, then to # instead access an environment variable to find the master # service's host, comment out the 'value: dns' line above, and # uncomment the line below. # value: env ports: - containerPort: 6379