Angular Web App
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
 
 
 
 
 
 

37 řádky
893 B

  1. apiVersion: apps/v1
  2. kind: Deployment
  3. metadata:
  4. name: eks-br2s-linux-deployment
  5. namespace: eks-br2s-app
  6. labels:
  7. app: eks-br2s-linux-app
  8. spec:
  9. replicas: 3
  10. selector:
  11. matchLabels:
  12. app: eks-br2s-linux-app
  13. template:
  14. metadata:
  15. labels:
  16. app: eks-br2s-linux-app
  17. spec:
  18. affinity:
  19. nodeAffinity:
  20. requiredDuringSchedulingIgnoredDuringExecution:
  21. nodeSelectorTerms:
  22. - matchExpressions:
  23. - key: kubernetes.io/arch
  24. operator: In
  25. values:
  26. - amd64
  27. - arm64
  28. containers:
  29. - name: br2s-front-end
  30. image: 834628752744.dkr.ecr.ap-southeast-1.amazonaws.com/acra/br2s-front-end:latest
  31. ports:
  32. - name: http
  33. containerPort: 80
  34. imagePullPolicy: Always
  35. nodeSelector:
  36. kubernetes.io/os: linux