Skip to content
This repository was archived by the owner on Dec 21, 2021. It is now read-only.

Adds first version of krustlet based agent implementation #18

Merged
merged 22 commits into from
Dec 2, 2020
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
9ca6de7
Working version after move from external project.
soenkeliebau Nov 23, 2020
5ec1579
Added cargo.lock to repo
soenkeliebau Nov 23, 2020
e7de3a0
Added current version of code and started refactoring to remove warni…
soenkeliebau Nov 24, 2020
cc38098
Fixed majority of linter warnings.
soenkeliebau Nov 24, 2020
6570313
Fixed rest of linter warnings except "unused variable" ones.
soenkeliebau Nov 24, 2020
b7cae72
Added code to look up the default IP.
soenkeliebau Nov 24, 2020
f1d3e8f
Added interim command line parsing. This is not perfect yet due to li…
soenkeliebau Nov 25, 2020
bf37c2a
Added interim command line parsing. This is not perfect yet due to li…
soenkeliebau Nov 25, 2020
f572bd2
Added code to properly set containers to _ready_ when the process is …
soenkeliebau Nov 26, 2020
9cbbae6
Added handling of environment variables in container section of pod.
soenkeliebau Nov 26, 2020
2cf0207
Add debug statement for env vars.
soenkeliebau Nov 26, 2020
03ce6b1
More debug statements.
soenkeliebau Nov 26, 2020
3847d0d
Addressed comments from Lars.
soenkeliebau Dec 1, 2020
4115e5c
Forgot to address comments in main.rs.
soenkeliebau Dec 1, 2020
68dfb0f
Second round of review comments by Lars addressed.
soenkeliebau Dec 2, 2020
3852c54
Fix rustfmt complaints.
soenkeliebau Dec 2, 2020
51ba044
Hopefully last remnants
soenkeliebau Dec 2, 2020
cc6781c
Removed unneeded static annotation
soenkeliebau Dec 2, 2020
1f0b7a8
Fixed clippy suggestions.
soenkeliebau Dec 2, 2020
6f44e10
Changed a few occurrences of illegal container status reasons, remove…
soenkeliebau Dec 2, 2020
5a7245b
Fixed unused variable
soenkeliebau Dec 2, 2020
26b7824
Linter warning
soenkeliebau Dec 2, 2020
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/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
- uses: actions-rs/toolchain@v1
with:
toolchain: nightly
components: clippy
components: clippy, rustfmt
override: true
- uses: actions-rs/clippy-check@v1
with:
Expand Down
Loading