Skip to content

Commit

Permalink
update Cilium to v1.11.1 (#14)
Browse files Browse the repository at this point in the history
* fix task include in tasks/template.ym

* update Cilium to v1.11.1

* fix typo
  • Loading branch information
githubixx authored Feb 16, 2022
1 parent 253a5af commit 0a06490
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 5 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
Changelog
---------

**6.0.1+1.11.1**

- upgrade to Cilium v1.11.1
- make sure Cilium Helm chart is installed before rendering (contribution by @tiagoblackcode)

**6.0.0+1.11.0**

- upgrade to Cilium v1.11.0
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ This Ansible role installs [Cilium](https://docs.cilium.io) network on a Kuberne
Versions
--------

I tag every release and try to stay with [semantic versioning](http://semver.org). If you want to use the role I recommend to checkout the latest tag. The master branch is basically development while the tags mark stable releases. But in general I try to keep master in good shape too. A tag `6.0.0+1.11.0` means this is release `6.0.0` of this role and it contains Cilium chart version `1.11.0`. If the role itself changes `X.Y.Z` before `+` will increase. If the Cilium chart version changes `X.Y.Z` after `+` will increase too. This allows to tag bugfixes and new major versions of the role while it's still developed for a specific Cilium release.
I tag every release and try to stay with [semantic versioning](http://semver.org). If you want to use the role I recommend to checkout the latest tag. The master branch is basically development while the tags mark stable releases. But in general I try to keep master in good shape too. A tag `6.0.0+1.11.1` means this is release `6.0.0` of this role and it contains Cilium chart version `1.11.1`. If the role itself changes `X.Y.Z` before `+` will increase. If the Cilium chart version changes `X.Y.Z` after `+` will increase too. This allows to tag bugfixes and new major versions of the role while it's still developed for a specific Cilium release.

Requirements
------------
Expand All @@ -20,7 +20,7 @@ Role Variables

```
# Helm chart version
cilium_chart_version: "1.11.0"
cilium_chart_version: "1.11.1"
# Helm chart name
cilium_chart_name: "cilium"
Expand Down
4 changes: 2 additions & 2 deletions defaults/main.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
# Helm chart version (uses Cilium v1.11.0)
cilium_chart_version: "1.11.0"
# Helm chart version (uses Cilium v1.11.1)
cilium_chart_version: "1.11.1"

# Helm release name
cilium_release_name: "cilium"
Expand Down
2 changes: 1 addition & 1 deletion tasks/template.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
- include_tasks: repo.yml
- include_tasks: helm_repository.yml

- name: Render values
block:
Expand Down

0 comments on commit 0a06490

Please sign in to comment.