You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jun 28, 2022. It is now read-only.
ir2proxy is a tool to convert ir2proxy's IngressRoute resources to HTTPProxy resources.
4
+
5
+
## Usage
6
+
7
+
`ir2proxy` is intended for taking a yaml file containing one or more valid IngressRoute objects, and then outputting translated HTTPProxy objects to stdout.
8
+
9
+
Logging is done to stderr.
10
+
11
+
To use the tool, just run it with a filename as input.
12
+
13
+
```sh
14
+
$ ir2proxy basic.ingressroute.yaml
15
+
---
16
+
apiVersion: projectcontour.io/v1
17
+
kind: HTTPProxy
18
+
metadata:
19
+
name: basic
20
+
namespace: default
21
+
spec:
22
+
routes:
23
+
- conditions:
24
+
- prefix: /
25
+
services:
26
+
- name: s1
27
+
port: 80
28
+
virtualhost:
29
+
fqdn: foo-basic.bar.com
30
+
status:
31
+
currentStatus: ""
32
+
description: ""
33
+
```
34
+
35
+
## Installation
36
+
37
+
Go to the [releases](https://github.com/projectcontour/ir2proxy/releases) page and download the latest version.
0 commit comments