Browse Source

Fix: hide 'ansible managed' balises in README.md (#11919)

[//]: -> apparently does not work for hiding on Github markdown
pull/11879/head
Max Gautier 4 months ago
committed by GitHub
parent
commit
f8c4d5a899
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
2 changed files with 3 additions and 3 deletions
  1. 4
      README.md
  2. 2
      scripts/render_readme_version.yml

4
README.md

@ -96,7 +96,7 @@ Note:
## Supported Components
[//]: # BEGIN ANSIBLE MANAGED BLOCK
<!-- BEGIN ANSIBLE MANAGED BLOCK -->
- Core
- [kubernetes](https://github.com/kubernetes/kubernetes) v1.32.0
@ -134,7 +134,7 @@ Note:
- [local-volume-provisioner](https://github.com/kubernetes-sigs/sig-storage-local-static-provisioner) v2.5.0
- [node-feature-discovery](https://github.com/kubernetes-sigs/node-feature-discovery) v0.16.4
[//]: # END ANSIBLE MANAGED BLOCK
<!-- END ANSIBLE MANAGED BLOCK -->
## Container Runtime Notes

2
scripts/render_readme_version.yml

@ -17,6 +17,6 @@
- ../roles/kubernetes-apps/argocd/defaults/main.yml
- name: Render versions in README.md
blockinfile:
marker: '[//]: # {mark} ANSIBLE MANAGED BLOCK'
marker: '<!-- {mark} ANSIBLE MANAGED BLOCK -->'
block: "\n{{ lookup('ansible.builtin.template', 'readme_versions.md.j2') }}\n\n"
path: ../README.md
Loading…
Cancel
Save