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

Update Akri Kubernetes and Runtime Dependencies #361

Merged
merged 22 commits into from
Aug 24, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
05c8a63
k8s-openapi 0.12.0 and kube 0.57.0
kate-goldenring Aug 10, 2021
56d8375
compile shared library
kate-goldenring Aug 10, 2021
f527dff
Update dependencies
kate-goldenring Aug 12, 2021
b576811
clippy fixes
kate-goldenring Aug 12, 2021
5a8c26c
use watch API instead of watcher and more clippy fixes
kate-goldenring Aug 12, 2021
ae8abb9
use old dependencies for Configuration validating webhook
kate-goldenring Aug 12, 2021
5365e22
update version.sh to not check/update version of dependencies with gi…
kate-goldenring Aug 12, 2021
86cedb3
remove TODOs
kate-goldenring Aug 12, 2021
93c0053
Increase Akri Rust version to support kube crate
kate-goldenring Aug 12, 2021
206c355
PR updates: address naming and add and remove commenting
kate-goldenring Aug 12, 2021
51cd778
increase version
kate-goldenring Aug 12, 2021
d4bab9a
point to h2 patch specific version
kate-goldenring Aug 17, 2021
5dc53e2
use ReceiveStream
kate-goldenring Aug 17, 2021
bc8456b
use recv instead of recv_from
kate-goldenring Aug 17, 2021
b333e97
do strategic patch
kate-goldenring Aug 17, 2021
a4fba1d
increase tarpaulin version
kate-goldenring Aug 17, 2021
2f34b71
specify group in test instances
kate-goldenring Aug 19, 2021
4e758c6
Rename instancelist
kate-goldenring Aug 19, 2021
70fbfed
force Instance Apply patch
kate-goldenring Aug 23, 2021
19ce1ea
Revert "update version.sh to not check/update version of dependencies…
kate-goldenring Aug 23, 2021
5be85eb
Update webhook to use integer instead of float
kate-goldenring Aug 23, 2021
f36251d
Do merge patches and set kube::api::watch version constant
kate-goldenring Aug 23, 2021
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/actions/build-component-per-arch/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ async function shell_cmd(cmd) {

if (core.getInput('build_rust') == '1') {
console.log(`Install Rust`)
child_process.execSync(`curl https://sh.rustup.rs | sh -s -- -y --default-toolchain=1.51.0`);
child_process.execSync(`curl https://sh.rustup.rs | sh -s -- -y --default-toolchain=1.54.0`);
const bindir = `${process.env.HOME}/.cargo/bin`;
process.env.PATH = `${process.env.PATH}:${bindir}`;

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-rust-code.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ jobs:
- name: Rust install
uses: actions-rs/toolchain@v1
with:
toolchain: 1.51.0
toolchain: 1.54.0
override: true
components: clippy, rustfmt

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/check-rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
- name: Rust install
uses: actions-rs/toolchain@v1
with:
toolchain: 1.51.0
toolchain: 1.54.0
override: true
components: clippy, rustfmt
- name: Install Linux requirements
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/run-tarpaulin.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
persist-credentials: false

- name: Create tarpaulin instance
run: docker create --network host --security-opt seccomp=unconfined -v "${PWD}:/volume" xd009642/tarpaulin:0.16.0 bash -c "echo 'sleep 600m; echo bye' > /tmp/keep_alive.sh; chmod 777 /tmp/keep_alive.sh; /tmp/keep_alive.sh" > container_id.txt
run: docker create --network host --security-opt seccomp=unconfined -v "${PWD}:/volume" xd009642/tarpaulin:0.18.0 bash -c "echo 'sleep 600m; echo bye' > /tmp/keep_alive.sh; chmod 777 /tmp/keep_alive.sh; /tmp/keep_alive.sh" > container_id.txt
- name: Start tarpaulin instance
run: docker start $(cat container_id.txt)
- name: Install linux requirement in tarpaulin instance
Expand Down
Loading