Skip to content
This repository was archived by the owner on Dec 21, 2021. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
10 changes: 5 additions & 5 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,15 @@ jobs:
steps:
- uses: actions/checkout@v2.3.4
- run: rustup update stable && rustup default stable
- run: sudo apt-get install libdbus-1-dev libsystemd-dev pkg-config libdbus-1-3
- run: sudo apt-get install libsystemd-dev pkg-config
- run: rustup component add rustfmt
- run: cargo fmt --all -- --check

clippy_check:
runs-on: ubuntu-latest
steps:
- name: Install dbus dependencies
run: sudo apt-get install libdbus-1-dev libsystemd-dev pkg-config libdbus-1-3
- name: Install dependencies
run: sudo apt-get install libsystemd-dev pkg-config
- uses: actions/checkout@v2.3.4
- uses: actions-rs/toolchain@v1.0.7
with:
Expand All @@ -39,8 +39,8 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2.3.4
- name: Install dbus dependencies
run: sudo apt-get install libdbus-1-dev libsystemd-dev pkg-config libdbus-1-3
- name: Install dependencies
run: sudo apt-get install libsystemd-dev pkg-config
- name: Build
run: cargo build --verbose
- name: Run tests
Expand Down
20 changes: 20 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# Changelog

## 0.1.0 - 2021-05-17

### Added
- Apache license v2.0 set ([#23]).
- Krustlet based agent implementation created ([#1], [#18], [#26], [#35], [#40]).
- Functionality to stop and restart processes added ([#25]).
- Agent restart without impacting running services enabled ([#63]).
- Rendering of template variables to environment variables added ([#30]).
- Setting of pod condition "ready" for state "running" added ([#32]).
- Support for command line parameters added ([#36], [#50], [#72], [#109]).
- Integration with systemd implemented ([#43], [#53], [#100], [#152]).
- Dependabot and security audit enabled ([#56], [#57]).
- Building and publishing of nightly deb and rpm packages added ([#73], [#78], [#94], [#110], [#144]).
- Bootstrapping of certificates and kubeconfig added ([#77]).
- Support for running of services as application users added ([#79]).
- Retrieval of container logs with kubectl logs implemented ([#135]).
- Configuration of terminationGracePeriodSeconds considered in systemd units ([#138]).
- Systemd dependency adapted so that it is compatible with systemd version 241 ([#145]).
Loading