Update latest stable tag to 0.8.5 and add release note

Change-Id: Iec1cf46bd662d7a0f5db05b6e51a062c07750ac4
This commit is contained in:
Eduardo Olivares 2024-12-24 09:38:46 +01:00
parent eb83ebe860
commit 43b06f412a
2 changed files with 17 additions and 1 deletions

View File

@ -12,7 +12,7 @@
vars:
deploy_dir: '{{ tobiko_src_dir | realpath }}'
deploy_git_repo: '{{ tobiko_git_repo }}'
deploy_git_refspec: "{{ tobiko_git_refspec | default('0.8.4') }}"
deploy_git_refspec: "{{ tobiko_git_refspec | default('0.8.5') }}"
deploy_git_remote: "{{ tobiko_git_remote | default('') }}"
when: create_tobiko_dir is changed

View File

@ -0,0 +1,16 @@
---
other:
- |
Introduced new config option `tobiko_pod_tolerations`, which can be used when
running background ping process using OpenShift POD.
With this option, tolerations can be added to the POD definition.
Example: `[{effect: NoSchedule, key: testOperator, value: true}, {effect: NoExecute, key: testOperator, value: true}]`
- |
Introduced new config option `tobiko_pod_extra_network`, which can be used when
running background ping process using OpenShift POD.
With this option, an extra network interface can be attached to the POD.
- |
Introduced new config option `tobiko_pod_node_selector`, which can be used when
running background ping process using OpenShift POD.
This option is used to specify on which Openshift node the POD should run.
Example: `kubernetes.io/hostname:worker-3`