-
Notifications
You must be signed in to change notification settings - Fork 7
/
values.yaml
128 lines (87 loc) · 1.86 KB
/
values.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
# This is a YAML-formatted file.
# Declare variables to be passed into your templates.
replicaCount: 1
budget:
minAvailable : 1
scheduler: 1
worker: 1
workspace:
image:
repository: anishdhanka/workspace
tag: latest
pullPolicy: Always
nginx:
image:
repository: anishdhanka/nginx
tag: latest
pullPolicy: Always
phpfpm:
image:
repository: anishdhanka/php-fpm
tag: latest
pullPolicy: Always
phpworker:
image:
repository: anishdhanka/php-worker
tag: latest
pullPolicy: Always
# use if image registry if private
#imagePullSecrets: [{'name': 'docker-secret'}]
phpworkernameOverride: 'phpworker'
nginxnameOverride: 'nginx'
phpfpmnameOverride: 'phpfpm'
workspacenameOverride: 'workspace'
config:
APP_NAME : 'Laravel'
APP_ENV : 'local'
APP_DEBUG: 'true'
APP_URL: 'http://localhost'
LOG_CHANNEL: 'stack'
DB_CONNECTION: 'mysql'
DB_PORT: '3306'
BROADCAST_DRIVER: 'redis'
CACHE_DRIVER: 'redis'
QUEUE_CONNECTION: 'redis'
SESSION_DRIVER: 'redis'
SESSION_LIFETIME: '120'
REDIS_PORT: '6379'
MAIL_MAILER: 'smtp'
MAIL_HOST: 'smtp.mailtrap.io'
MAIL_PORT: '2525'
MAIL_ENCRYPTION: 'null'
MAIL_FROM_ADDRESS: 'null'
MAIL_FROM_NAME: ''
PUSHER_APP_CLUSTER: 'mt1'
APP_KEY: 'base64:N0i/V07eZ29AYP2wXS3DXLykiOLY2Z2Eo2KPaesV9Zs='
DB_HOST: '127.0.0.1'
DB_DATABASE: 'laravel'
DB_USERNAME: 'root'
DB_PASSWORD: ''
REDIS_HOST: '127.0.0.1'
REDIS_PASSWORD: 'null'
PUSHER_APP_ID: ''
PUSHER_APP_KEY: ''
PUSHER_APP_SECRET: ''
AWS_ACCESS_KEY_ID: ''
AWS_SECRET_ACCESS_KEY: ''
AWS_DEFAULT_REGION: ''
AWS_BUCKET: ''
MAIL_USERNAME: 'null'
MAIL_PASSWORD: 'null'
MIX_PUSHER_APP_KEY: ''
MIX_PUSHER_APP_CLUSTER: ''
#####
service:
type: ClusterIP
port: 80
targetPort: 80
resources:
limits:
cpu: 100m
memory: 128Mi
requests:
cpu: 100m
memory: 128Mi
nodeSelector: {}
tolerations: []
affinity: {}