Skip to content

Commit

Permalink
Update CHANGES and example manifests for release
Browse files Browse the repository at this point in the history
  • Loading branch information
dghubble committed Aug 25, 2021
1 parent d56e83d commit 9061208
Show file tree
Hide file tree
Showing 5 changed files with 43 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,12 @@ Notable changes between versions.

## Latest

## v0.3.0

* Add support for Kubernetes node draining ([#51](https://github.com/poseidon/fleetlock/pull/51))
* Automate base image, Go version, and module dependency updates
* Build multi-arch container images (amd64, arm64) ([#15](https://github.com/poseidon/fleetlock/pull/15))
* Switch to using the Prometheus `collectors` package ([#37](https://github.com/poseidon/fleetlock/pull/37))

## v0.2.0

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Zincati runs on-host (`zincati.service`). Declare a Zincati `fleet_lock` strateg

```yaml
variant: fcos
version: 1.0.0
version: 1.4.0
storage:
files:
- path: /etc/zincati/config.d/55-update-strategy.toml
Expand Down
12 changes: 12 additions & 0 deletions examples/k8s/cluster-role-binding.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
apiVersion: rbac.authorization.k8s.io/v1
kind: ClusterRoleBinding
metadata:
name: fleetlock
roleRef:
apiGroup: rbac.authorization.k8s.io
kind: ClusterRole
name: fleetlock
subjects:
- kind: ServiceAccount
name: fleetlock
namespace: default
24 changes: 24 additions & 0 deletions examples/k8s/cluster-role.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
apiVersion: rbac.authorization.k8s.io/v1
kind: ClusterRole
metadata:
name: fleetlock
rules:
- apiGroups:
- ""
resources:
- nodes
verbs:
- list
- patch
- apiGroups:
- ""
resources:
- pods
verbs:
- list
- apiGroups:
- ""
resources:
- pods/eviction
verbs:
- create
2 changes: 1 addition & 1 deletion examples/k8s/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ spec:
serviceAccountName: fleetlock
containers:
- name: fleetlock
image: quay.io/poseidon/fleetlock:v0.2.0
image: quay.io/poseidon/fleetlock:v0.3.0
ports:
- name: http
containerPort: 8080
Expand Down

0 comments on commit 9061208

Please sign in to comment.