-
Notifications
You must be signed in to change notification settings - Fork 1
/
skaffold.yaml
214 lines (213 loc) · 6.67 KB
/
skaffold.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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
apiVersion: skaffold/v4beta1
kind: Config
metadata:
name: hub
build:
artifacts:
- image: hub-ui
docker:
target: development
dockerfile: Dockerfile
buildArgs:
APP_FQDN: http://hub.127.0.0.1.nip.io:9080
sync:
manual:
- src: 'src/**/*.tsx'
dest: .
- src: 'src/**/*.css'
dest: .
- src: 'src/**/*.ts'
dest: .
- src: 'src/queries/*.graphql'
dest: .
- src: 'src/mutations/*.graphql'
dest: .
portForward:
- resourceType: service
resourceName: apisix-gateway
namespace: ingress-apisix
port: 80
localPort: 9080
- resourceType: service
resourceName: federated-router
namespace: default
port: 80
localPort: 3005
deploy:
helm:
releases:
- name: hub-gateway
createNamespace: true
namespace: ingress-apisix
remoteChart: hub-gateway
repo: https://charts.holaplex.com
valuesFiles:
- .helm/values.gateway.yaml
- name: hub-permissions
remoteChart: hub-permissions
repo: https://charts.holaplex.com
valuesFiles:
- .helm/values.permissions.yaml
- .helm/secrets.permissions.yaml
- name: redpanda
repo: https://charts.redpanda.com/
remoteChart: redpanda
valuesFiles:
- .helm/values.redpanda.yaml
- name: hub-ui
repo: https://charts.holaplex.com
remoteChart: hub-ui
setValueTemplates:
fullnameOverride: hub-ui
image.repository: '{{ .IMAGE_REPO_hub_ui }}'
image.tag: '{{ .IMAGE_TAG_hub_ui }}'
valuesFiles:
- .helm/secrets.ui.yaml
- name: kratos-db
repo: https://charts.bitnami.com/bitnami
remoteChart: postgresql
valuesFiles:
- .helm/values.kratos.postgresql.yaml
- name: hub-customers-db
repo: https://charts.bitnami.com/bitnami
remoteChart: postgresql
valuesFiles:
- .helm/values.customers.postgresql.yaml
- name: hub-credits-db
repo: https://charts.bitnami.com/bitnami
remoteChart: postgresql
valuesFiles:
- .helm/values.credits.postgresql.yaml
- name: hub-nfts-db
repo: https://charts.bitnami.com/bitnami
remoteChart: postgresql
valuesFiles:
- .helm/values.nfts.postgresql.yaml
- name: hub-nfts-solana-db
repo: https://charts.bitnami.com/bitnami
remoteChart: postgresql
valuesFiles:
- .helm/values.nfts-solana.postgresql.yaml
- name: hydra-db
repo: https://charts.bitnami.com/bitnami
remoteChart: postgresql
valuesFiles:
- .helm/values.hydra.postgresql.yaml
- name: keto-db
repo: https://charts.bitnami.com/bitnami
remoteChart: postgresql
valuesFiles:
- .helm/values.keto.postgresql.yaml
- name: svix-db
repo: https://charts.bitnami.com/bitnami
remoteChart: postgresql
valuesFiles:
- .helm/values.svix.postgresql.yaml
- name: hub-orgs-db
repo: https://charts.bitnami.com/bitnami
remoteChart: postgresql
valuesFiles:
- .helm/values.orgs.postgresql.yaml
- name: hub-webhooks-db
repo: https://charts.bitnami.com/bitnami
remoteChart: postgresql
valuesFiles:
- .helm/values.webhooks.postgresql.yaml
- name: hub-treasuries-db
repo: https://charts.bitnami.com/bitnami
remoteChart: postgresql
valuesFiles:
- .helm/values.treasuries.postgresql.yaml
- name: hub-analytics-db
repo: https://charts.bitnami.com/bitnami
remoteChart: postgresql
valuesFiles:
- .helm/values.analytics.postgresql.yaml
- name: mailhog
repo: https://codecentric.github.io/helm-charts
remoteChart: mailhog
valuesFiles:
- .helm/values.mailhog.yaml
- name: kratos
repo: https://k8s.ory.sh/helm/charts
remoteChart: kratos
valuesFiles:
- .helm/values.kratos.yaml
- name: hydra
repo: https://k8s.ory.sh/helm/charts
remoteChart: hydra
valuesFiles:
- .helm/values.hydra.yaml
- name: hub-uploads
remoteChart: hub-uploads
repo: https://charts.holaplex.com
valuesFiles:
- .helm/values.uploads.yaml
- .helm/secrets.uploads.yaml
- name: hub-credits
remoteChart: hub-credits
repo: https://charts.holaplex.com
valuesFiles:
- .helm/values.credits.yaml
- .helm/secrets.credits.yaml
- name: hub-identities
remoteChart: hub-identities
repo: https://charts.holaplex.com
valuesFiles:
- .helm/values.identities.yaml
- .helm/secrets.identities.yaml
- name: hub-analytics
remoteChart: hub-analytics
repo: https://charts.holaplex.com
valuesFiles:
- .helm/values.analytics.yaml
- .helm/secrets.analytics.yaml
- name: hub-orgs
remoteChart: hub-orgs
repo: https://charts.holaplex.com
valuesFiles:
- .helm/values.orgs.yaml
- .helm/secrets.orgs.yaml
- name: hub-webhooks
remoteChart: hub-webhooks
repo: https://charts.holaplex.com
valuesFiles:
- .helm/values.webhooks.yaml
- .helm/secrets.webhooks.yaml
- name: hub-nfts-solana
remoteChart: hub-nfts-solana
repo: https://charts.holaplex.com
version: 0.4.1
valuesFiles:
- .helm/values.nfts-solana.yaml
- .helm/secrets.nfts-solana.yaml
- name: hub-nfts
remoteChart: hub-nfts
repo: https://charts.holaplex.com
valuesFiles:
- .helm/values.nfts.yaml
- .helm/secrets.nfts.yaml
- name: hub-customers
remoteChart: hub-customers
repo: https://charts.holaplex.com
valuesFiles:
- .helm/values.customers.yaml
- .helm/secrets.customers.yaml
- name: hub-credentials
remoteChart: hub-credentials
repo: https://charts.holaplex.com
valuesFiles:
- .helm/values.credentials.yaml
- .helm/secrets.credentials.yaml
- name: federated-router
remoteChart: oci://ghcr.io/apollographql/helm-charts/router
version: 1.19.0
valuesFiles:
- .helm/values.router.yaml
- .helm/secrets.router.yaml
- name: hub-treasuries
remoteChart: hub-treasuries
repo: https://charts.holaplex.com
valuesFiles:
- .helm/values.treasuries.yaml
- .helm/secrets.treasuries.yaml