-
-
Save haproxytechblog/f5375ba89374b8ff63d72707d8933b59 to your computer and use it in GitHub Desktop.
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: ingress.v1.haproxy.org/v1 | |
| kind: TCP | |
| metadata: | |
| name: tcp-1 | |
| spec: | |
| - name: tcp-http-echo-8443 | |
| frontend: | |
| name: http-echo-445 | |
| tcplog: true | |
| binds: | |
| - name: mytcpapp | |
| port: 20000 | |
| service: | |
| name: http-echo | |
| port: 8443 |
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: ingress.v1.haproxy.org/v1 | |
| kind: TCP | |
| metadata: | |
| name: tcp-1 | |
| spec: | |
| - name: tcp-http-echo-8443 | |
| frontend: | |
| name: fe-http-echo-8443 | |
| tcplog: true | |
| log_format: "%{+Q}o %t %s" | |
| binds: | |
| - name: v4 | |
| ssl: true | |
| ssl_certificate: tcp-test-cert | |
| port: 2000 | |
| - name: v4v6 | |
| address: "::" | |
| port: 2000 | |
| v4v6: true | |
| service: | |
| name: "http-echo" | |
| port: 8443 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment