mirror of
https://github.com/penpot/penpot.git
synced 2025-01-21 22:22:43 -05:00
Merge pull request #181 from tokens-studio/feat/mailslurper
Remove onechart for simple manifests
This commit is contained in:
commit
caa41146c4
1 changed files with 38 additions and 14 deletions
|
@ -1,17 +1,41 @@
|
||||||
app: penpot-infra
|
app: penpot-infra
|
||||||
env: prod
|
env: prod
|
||||||
namespace: penpot
|
namespace: penpot
|
||||||
chart:
|
manifests: |
|
||||||
repository: https://chart.onechart.dev
|
apiVersion: apps/v1
|
||||||
name: onechart
|
kind: Deployment
|
||||||
version: 0.64.0
|
namespace: penpot
|
||||||
values:
|
metadata:
|
||||||
containerPort: 1025
|
name: mailslurper
|
||||||
gitRepository: tokens-studio/tokens-studio-for-penpot
|
labels:
|
||||||
gitSha: '{{ .SHA }}'
|
app: mailslurper
|
||||||
image:
|
spec:
|
||||||
repository: oryd/mailslurper
|
|
||||||
tag: smtps-latest
|
|
||||||
replicas: 1
|
replicas: 1
|
||||||
resources:
|
selector:
|
||||||
ignoreLimits: true
|
matchLabels:
|
||||||
|
app: mailslurper
|
||||||
|
template:
|
||||||
|
metadata:
|
||||||
|
labels:
|
||||||
|
app: mailslurper
|
||||||
|
spec:
|
||||||
|
containers:
|
||||||
|
- name: mailslurper
|
||||||
|
image: oryd/mailslurper:smtps-latest
|
||||||
|
ports:
|
||||||
|
- containerPort: 1025
|
||||||
|
- containerPort: 4436
|
||||||
|
- containerPort: 4437
|
||||||
|
---
|
||||||
|
apiVersion: v1
|
||||||
|
kind: Service
|
||||||
|
metadata:
|
||||||
|
name: mailslurper
|
||||||
|
namespace: penpot
|
||||||
|
spec:
|
||||||
|
selector:
|
||||||
|
app: mailslurper
|
||||||
|
ports:
|
||||||
|
- protocol: TCP
|
||||||
|
port: 1025
|
||||||
|
targetPort: 1025
|
||||||
|
|
Loading…
Add table
Reference in a new issue