Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix chrony configuration #83

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
'source': 'data:text/plain;charset=utf-8;base64,' + chrony_b64,
'verification': {}
},
'filesystem': 'root',
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Did you try this with ignition configuration Specification v3? Since OCP 4.6 is using ignition spec v3.1 we cannot use filesystem.

If you are planning to use stable OCP 4.5 release then please switch to release-4.5 branch of this repository.

'overwrite': True
})

Expand Down
2 changes: 1 addition & 1 deletion playbooks/roles/ocp-config/tasks/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@
dest: "{{ workdir }}/manifests"
remote_src: yes
with_fileglob:
- "/machineconfig/*-chrony-configuration.yaml"
- "../../ocp4-helpernode/machineconfig/*-chrony-configuration.yaml"
when: chronyconfig.enabled

- name: Create ignition files
Expand Down