Skip to content
New issue

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

Run rustls CI against IP cluster address #1183

Merged
merged 1 commit into from Apr 3, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
13 changes: 4 additions & 9 deletions .github/workflows/ci.yml
Expand Up @@ -208,15 +208,10 @@ jobs:
run: cargo run -p e2e --bin boot --features=openssl,latest
- name: boot openssl, minimum supported k8s
run: cargo run -p e2e --bin boot --features=openssl,mk8sv
# no rustls local yet: https://github.com/kube-rs/kube-rs/issues/153
# we could edit kubeconfig and /etc/hosts to have the following lines:
# /etc/hosts: 127.0.0.1 k3d.local
# kubeconfig: server: https://k3d.local:36729 (e.g. swap out 0.0.0.0 under cluster)
# Together, that makes it work locally. Maybe that can be done with some k3d-args to host-aliases.
#- name: boot rustls, latest k8s
# run: cargo run -p e2e --bin boot --features=rustls,latest
#- name: boot rustls, minimum supported k8s
# run: cargo run -p e2e --bin boot --features=rustls,mk8sv
- name: boot rustls, latest k8s
run: cargo run -p e2e --bin boot --features=rustls,latest
- name: boot rustls, minimum supported k8s
run: cargo run -p e2e --bin boot --features=rustls,mk8sv

in-cluster:
# in-cluster e2e via docker on linux
Expand Down