Created
July 6, 2021 11:31
-
-
Save cmaster11/62b64fcf8602aaef178433497bb8cf20 to your computer and use it in GitHub Desktop.
Markdium-Restart Kubernetes deployments using HTTP requests
This file contains hidden or 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: networking.k8s.io/v1 | |
kind: Ingress | |
metadata: | |
name: restart-helper | |
spec: | |
rules: | |
- host: myhost.mydomain.com | |
http: | |
paths: | |
- path: / | |
pathType: Prefix | |
backend: | |
service: | |
name: restart-helper | |
port: | |
number: 7055 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment