kubernetes のイングレス コントローラーとして traefik を使用する予定です。単独で実行する場合、エントリ ポイントを自分で定義できることがわかりました。kubernetesで同じことができるかどうか知りたいです。基本的に、kubernetes でこのような構成を定義したいと思います。
[entryPoints]
[entryPoints.http]
address = ":80"
[entryPoints.http.redirect]
entryPoint = "https"
[entryPoints.https]
address = ":443"
[entryPoints.https.tls]
[[entryPoints.https.tls.certificates]]
CertFile = "integration/fixtures/https/first.com.cert"
KeyFile = "integration/fixtures/https/first.com.key"
[entryPoints.https]
address = ":444"
[entryPoints.https.tls]
[[entryPoints.https.tls.certificates]]
CertFile = "integration/fixtures/https/second.com.cert"
KeyFile = "integration/fixtures/https/second.com.key"
次に、さまざまなバックエンドをさまざまなエントリ ポイントに関連付けます。