Scott Moser
    • Create new note
    • Create a note from template
      • Sharing URL Link copied
      • /edit
      • View mode
        • Edit mode
        • View mode
        • Book mode
        • Slide mode
        Edit mode View mode Book mode Slide mode
      • Customize slides
      • Note Permission
      • Read
        • Only me
        • Signed-in users
        • Everyone
        Only me Signed-in users Everyone
      • Write
        • Only me
        • Signed-in users
        • Everyone
        Only me Signed-in users Everyone
      • Engagement control Commenting, Suggest edit, Emoji Reply
    • Invite by email
      Invitee
    • Publish Note

      Share your work with the world Congratulations! 🎉 Your note is out in the world Publish Note

      Your note will be visible on your profile and discoverable by anyone.
      Your note is now live.
      This note is visible on your profile and discoverable online.
      Everyone on the web can find and read all notes of this public team.
      See published notes
      Unpublish note
      Please check the box to agree to the Community Guidelines.
      View profile
    • Commenting
      Permission
      Disabled Forbidden Owners Signed-in users Everyone
    • Enable
    • Permission
      • Forbidden
      • Owners
      • Signed-in users
      • Everyone
    • Suggest edit
      Permission
      Disabled Forbidden Owners Signed-in users Everyone
    • Enable
    • Permission
      • Forbidden
      • Owners
      • Signed-in users
    • Emoji Reply
    • Enable
    • Versions and GitHub Sync
    • Note settings
    • Engagement control
    • Transfer ownership
    • Delete this note
    • Save as template
    • Insert from template
    • Import from
      • Dropbox
      • Google Drive
      • Gist
      • Clipboard
    • Export to
      • Dropbox
      • Google Drive
      • Gist
    • Download
      • Markdown
      • HTML
      • Raw HTML
Menu Note settings Versions and GitHub Sync Sharing URL Create Help
Create Create new note Create a note from template
Menu
Options
Engagement control Transfer ownership Delete this note
Import from
Dropbox Google Drive Gist Clipboard
Export to
Dropbox Google Drive Gist
Download
Markdown HTML Raw HTML
Back
Sharing URL Link copied
/edit
View mode
  • Edit mode
  • View mode
  • Book mode
  • Slide mode
Edit mode View mode Book mode Slide mode
Customize slides
Note Permission
Read
Only me
  • Only me
  • Signed-in users
  • Everyone
Only me Signed-in users Everyone
Write
Only me
  • Only me
  • Signed-in users
  • Everyone
Only me Signed-in users Everyone
Engagement control Commenting, Suggest edit, Emoji Reply
  • Invite by email
    Invitee
  • Publish Note

    Share your work with the world Congratulations! 🎉 Your note is out in the world Publish Note

    Your note will be visible on your profile and discoverable by anyone.
    Your note is now live.
    This note is visible on your profile and discoverable online.
    Everyone on the web can find and read all notes of this public team.
    See published notes
    Unpublish note
    Please check the box to agree to the Community Guidelines.
    View profile
    Engagement control
    Commenting
    Permission
    Disabled Forbidden Owners Signed-in users Everyone
    Enable
    Permission
    • Forbidden
    • Owners
    • Signed-in users
    • Everyone
    Suggest edit
    Permission
    Disabled Forbidden Owners Signed-in users Everyone
    Enable
    Permission
    • Forbidden
    • Owners
    • Signed-in users
    Emoji Reply
    Enable
    Import from Dropbox Google Drive Gist Clipboard
       owned this note    owned this note      
    Published Linked with GitHub
    Subscribed
    • Any changes
      Be notified of any changes
    • Mention me
      Be notified of mention me
    • Unsubscribe
    Subscribe
    # NTP configuration in cloud-init In cloud-init, the top level config entry `ntp` should be seen as referring to the network time protocol rather than a specific implementation such as `isc-ntp`, `chrony`, `systemd-timesyncd`. You can see the description of config in upstream [readthedocs](http://cloudinit.readthedocs.io/en/latest/topics/modules.html#ntp). The value config path `system_info['ntp_client']` can be set by the image builder to provide a declaration of which ntp client should be used in this system. This value can be set to: > [name=Robert Schweikert] After revisiting my branch I realized that `system_info['ntp_client']` is not sufficient. The reason is that we cannot assume that the service name is the same as the client name. That would imply that the distro calss implementation needs to carry a map between the system_info setting and the service name, that's certainly no problem, just menioning that this is needed. * isc-ntp * chrony [note there is not current support for this] * systemd-timesyncd * auto > [name=Robert Schweikert] My concern with the "auto" mode is how we would decide in the code what it should be given that all ntpd, chrony, timesyncd may be available. An is_installable() test leads us kind of into the trap I outlined on the mailing list. If we have a distro.preferred_time_client() then in the distro specific implementation something has to make a decision based on the distro version, i.e. read os-release or other file. > I think an "auto" mode kind of gets us into the predicament I described on the mail list. One way out of this may be to have a "supplemental" config file that gets rendered at build time and that supplemental config file provides distro_version. That would resolve the "auto" issue as then distro.preferred_time_client() could return the "proper value" based on cloud-init "internal" knowledge and thus testing becomes easy. > [name=Scott Moser] You're certainly welcome to build images with the system_info/ntp-client set to the correct value for your image. Either doing that, or having only one ntp client installed will result in simple path. I believe that is what you're suggesting. You can ship that by either shipping a different /etc/cloud/cloud.cfg or "supplemental config" /etc/cloud/cloud.cfg.d/00-distro.cfg > > [name=Robert Schweikert] I am not really worried about the images I build. Those will have the proper setting, that's easy. I am more worried about custom image builds or users that simply use the "default" cloud.cfg file. Of course in the "default" cloud.cfg file ntp can simple be disabled. But for a use building their own image they would set "ntp: enabled" and would probably rightfully expect cloud-init to use the "default" client for that distribution. And thus we are back to decide based on the distribution what client to use. Unless of course we come to the conclusion that a distribution now basically needs to supply /etc/cloud/cloud.cfg.d/00-distro.cfg in their cloud-init package as the way to differentiate between clients. > > [name=Ryan Harper] Given the list of "official" clients; then do you expect upstream cloud-init to include config templates for each of these clients? >[name=Scott Moser] Yes eventually. Right now we only support systemd-timesyncd and isc-ntp. We don't have to carry files identical to those installed by the distro though. Antother option that is used in ssh is to parse the file and make changes. > > [name=Robert Schweikert] I would, yes. If we support the various clients then as a pckager on the distro side I think cloud-init should do the "right" thing, i.e. render a config for the time sync client based on the values in cloud.cfg The default upstream value will be `auto`. A value of `auto` indicates that the ntp module will select and configure an ntp client. The selection of an ntp client will follow the following guidelines * Preference will be given to clients that are already installed. * If multiple ntp client packages are installed, the behavior is not defined other than that one will be selected and configured. * If no ntp client packages are installed behavior is again undefined. Cloud-init as an upstream will strive to be backwards compatible given identical inputs. That is to say that an upgrade to cloud-init in an image with no other changes should not result in a different client being chosen. > [name=Scott Moser] I am not making a decision here on *where* this logic > exists just yet. It could be in cc_ntp or as a `distro.get_ntp_client_info()` > function. ## Distro Changes The package maintainers of the Ubuntu cloud-init package will carry patches to ensure that `isc-ntp` is chosen on Ubuntu 16.04 even though `systemd-timesyncd` is already present in the official images. ## Upstream Changes * make configuration of ntp inspect `system_info/ntp_client`. * extend the `ntp` configuration namespace to include a boolean `enabled` to allow for explicitly turning ntp on to whatever default settings come with the operating system. For example: ntp: enabled: true > [name=Robert Schweikert] Does this imply the "auto" mode is only applicable if the user sets at least "enabled: true"? That would be my interpretation and I am in favor of that approach. > > Overall I think teasing the configuration appart as proposed is a workable approach. My primary concern remains with the "auto" setting, as indicated in the comment above and the decision tree to make "auto" work without "external" file > dependency that would impose some inconcveniences on testing > [name=Scott Moser] "auto" is the default if not set. Currently if you put 'ntp: True' in user-ata or system config, then cloud-init will go down the path of configuring ntp. That is fine, but someone convoluted. We want to add an obvious declarative way to enable ntp with no declaration of pool or servers. > You shouldn't worry too much about testing. The tests for ntp are kind of difficult right now, but they can and should be cleaned up. >

    Import from clipboard

    Paste your markdown or webpage here...

    Advanced permission required

    Your current role can only read. Ask the system administrator to acquire write and comment permission.

    This team is disabled

    Sorry, this team is disabled. You can't edit this note.

    This note is locked

    Sorry, only owner can edit this note.

    Reach the limit

    Sorry, you've reached the max length this note can be.
    Please reduce the content or divide it to more notes, thank you!

    Import from Gist

    Import from Snippet

    or

    Export to Snippet

    Are you sure?

    Do you really want to delete this note?
    All users will lose their connection.

    Create a note from template

    Create a note from template

    Oops...
    This template has been removed or transferred.
    Upgrade
    All
    • All
    • Team
    No template.

    Create a template

    Upgrade

    Delete template

    Do you really want to delete this template?
    Turn this template into a regular note and keep its content, versions, and comments.

    This page need refresh

    You have an incompatible client version.
    Refresh to update.
    New version available!
    See releases notes here
    Refresh to enjoy new features.
    Your user state has changed.
    Refresh to load new user state.

    Sign in

    Forgot password

    or

    By clicking below, you agree to our terms of service.

    Sign in via Facebook Sign in via Twitter Sign in via GitHub Sign in via Dropbox Sign in with Wallet
    Wallet ( )
    Connect another wallet

    New to HackMD? Sign up

    Help

    • English
    • 中文
    • Français
    • Deutsch
    • 日本語
    • Español
    • Català
    • Ελληνικά
    • Português
    • italiano
    • Türkçe
    • Русский
    • Nederlands
    • hrvatski jezik
    • język polski
    • Українська
    • हिन्दी
    • svenska
    • Esperanto
    • dansk

    Documents

    Help & Tutorial

    How to use Book mode

    Slide Example

    API Docs

    Edit in VSCode

    Install browser extension

    Contacts

    Feedback

    Discord

    Send us email

    Resources

    Releases

    Pricing

    Blog

    Policy

    Terms

    Privacy

    Cheatsheet

    Syntax Example Reference
    # Header Header 基本排版
    - Unordered List
    • Unordered List
    1. Ordered List
    1. Ordered List
    - [ ] Todo List
    • Todo List
    > Blockquote
    Blockquote
    **Bold font** Bold font
    *Italics font* Italics font
    ~~Strikethrough~~ Strikethrough
    19^th^ 19th
    H~2~O H2O
    ++Inserted text++ Inserted text
    ==Marked text== Marked text
    [link text](https:// "title") Link
    ![image alt](https:// "title") Image
    `Code` Code 在筆記中貼入程式碼
    ```javascript
    var i = 0;
    ```
    var i = 0;
    :smile: :smile: Emoji list
    {%youtube youtube_id %} Externals
    $L^aT_eX$ LaTeX
    :::info
    This is a alert area.
    :::

    This is a alert area.

    Versions and GitHub Sync
    Get Full History Access

    • Edit version name
    • Delete

    revision author avatar     named on  

    More Less

    Note content is identical to the latest version.
    Compare
      Choose a version
      No search result
      Version not found
    Sign in to link this note to GitHub
    Learn more
    This note is not linked with GitHub
     

    Feedback

    Submission failed, please try again

    Thanks for your support.

    On a scale of 0-10, how likely is it that you would recommend HackMD to your friends, family or business associates?

    Please give us some advice and help us improve HackMD.

     

    Thanks for your feedback

    Remove version name

    Do you want to remove this version name and description?

    Transfer ownership

    Transfer to
      Warning: is a public team. If you transfer note to this team, everyone on the web can find and read this note.

        Link with GitHub

        Please authorize HackMD on GitHub
        • Please sign in to GitHub and install the HackMD app on your GitHub repo.
        • HackMD links with GitHub through a GitHub App. You can choose which repo to install our App.
        Learn more  Sign in to GitHub

        Push the note to GitHub Push to GitHub Pull a file from GitHub

          Authorize again
         

        Choose which file to push to

        Select repo
        Refresh Authorize more repos
        Select branch
        Select file
        Select branch
        Choose version(s) to push
        • Save a new version and push
        • Choose from existing versions
        Include title and tags
        Available push count

        Pull from GitHub

         
        File from GitHub
        File from HackMD

        GitHub Link Settings

        File linked

        Linked by
        File path
        Last synced branch
        Available push count

        Danger Zone

        Unlink
        You will no longer receive notification when GitHub file changes after unlink.

        Syncing

        Push failed

        Push successfully