Skip to content

Commit

Permalink
Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
sebt3 committed Aug 8, 2023
1 parent af5b6eb commit cc7c26f
Show file tree
Hide file tree
Showing 12 changed files with 162 additions and 151 deletions.
14 changes: 7 additions & 7 deletions .woodpecker/.docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@ steps:
image: git.solidite.fr/images/ansible:8.2.0
commands:
- yamllint -f colored .
# cargo:
# group: lint
# image: docker.io/rust:1.71.0
# commands:
# - export PATH=$PATH:$CARGO_HOME/bin
# - rustup component add clippy
# - cargo clippy -- -Dwarnings -W clippy::semicolon-if-nothing-returned -W clippy::map-unwrap-or -W clippy::similar-names -W clippy::similar-names -W clippy::manual-string-new
cargo:
group: lint
image: docker.io/rust:1.71.0
commands:
- export PATH=$PATH:$CARGO_HOME/bin
- rustup component add clippy
- cargo clippy -- -Dwarnings -W clippy::semicolon-if-nothing-returned -W clippy::map-unwrap-or -W clippy::similar-names -W clippy::similar-names -W clippy::manual-string-new
lint-docker-agent:
group: lint
image: hadolint/hadolint:latest-alpine
Expand Down
12 changes: 6 additions & 6 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "vynil"
version = "0.1.0"
version = "0.2.1"
authors = ["Sébastien Huss <sebastien.huss@gmail.com>"]
edition = "2021"
license = " BSD-3-Clause"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ Goal: Validation webhook
- dist update
```
kubectl config set-context --current --namespace=${VYNIL_NS:=vynil};
kubectl delete job ${VYNIL_DIST:=domain}-upg;kubectl create job ${VYNIL_DIST}-upg --from=cronjob/${VYNIL_DIST}-clone
kubectl delete job ${VYNIL_DIST:=domain}-upg;kubectl create job ${VYNIL_DIST}-upg --from=cronjob/${VYNIL_DIST}-clone && kubectl wait --for=condition=complete job/${VYNIL_DIST}-upg && kubectl delete po -l app=vynil-controller
```

- get a component commit_id
Expand Down
2 changes: 1 addition & 1 deletion agent/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "agent"
version = "0.2.0"
version = "0.2.1"
authors = ["Sébastien Huss <sebastien.huss@gmail.com>"]
edition = "2021"
license = " BSD-3-Clause"
Expand Down
2 changes: 1 addition & 1 deletion dist/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "dist"
version = "0.2.0"
version = "0.2.1"
authors = ["Sébastien Huss <sebastien.huss@gmail.com>"]
edition = "2021"
license = " BSD-3-Clause"
Expand Down
Loading

0 comments on commit cc7c26f

Please sign in to comment.