Created
January 31, 2022 03:06
-
-
Save phillipsj/89cd60559820fd3b8bf72a76e9bf90f0 to your computer and use it in GitHub Desktop.
Kubernetes manifest for smtp4dev
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
apiVersion: v1 | |
kind: Service | |
metadata: | |
name: smtp4dev | |
spec: | |
selector: | |
app: smtp4dev | |
ports: | |
- name: smtp | |
protocol: TCP | |
port: 25 | |
targetPort: 25 | |
- name: http | |
protocol: TCP | |
port: 80 | |
targetPort: 80 | |
--- | |
apiVersion: apps/v1 | |
kind: Deployment | |
metadata: | |
name: smtp4dev | |
labels: | |
app: smtp4dev | |
spec: | |
replicas: 1 | |
selector: | |
matchLabels: | |
app: smtp4dev | |
template: | |
metadata: | |
labels: | |
app: smtp4dev | |
spec: | |
affinity: | |
nodeAffinity: | |
requiredDuringSchedulingIgnoredDuringExecution: | |
nodeSelectorTerms: | |
- matchExpressions: | |
- key: kubernetes.io/os | |
operator: In | |
values: | |
- linux | |
containers: | |
- name: smtp4dev | |
image: rnwood/smtp4dev:3.1.3-ci20211206101 | |
ports: | |
- containerPort: 80 | |
- containerPort: 25 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment