We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Just documenting how I got this deployed at a job I'm at
apiVersion: v1 kind: Namespace metadata: name: dev labels: name: dev --- apiVersion: apps/v1 kind: Deployment metadata: name: mailhog namespace: dev spec: replicas: 1 selector: matchLabels: service: mailhog template: metadata: labels: service: mailhog spec: containers: - name: app image: cd2team/mailhog imagePullPolicy: IfNotPresent --- apiVersion: v1 kind: Service metadata: name: mailhog namespace: dev spec: type: NodePort selector: service: mailhog ports: - port: 25 targetPort: 1025 protocol: TCP name: smtp - port: 3000 targetPort: 8025 protocol: TCP name: web
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Just documenting how I got this deployed at a job I'm at
The text was updated successfully, but these errors were encountered: