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 DaemonSet name on diff #1951

Merged
merged 3 commits into from
Apr 6, 2022

Commits on Apr 6, 2022

  1. Fix DaemonSet name on diff

    The DaemonSet name was set with a lower case s (Daemonset), but the kind
    in the state is created with upper case (DaemonSet), and this was
    preventing changes on the .spec.selector to trigger a replace.
    
    This issue was also causing the Kubernetes API to fail as this field is
    immutable, but pulumi was trying to update it.
    alexrocco committed Apr 6, 2022
    Configuration menu
    Copy the full SHA
    c9882b0 View commit details
    Browse the repository at this point in the history
  2. Add changelog

    alexrocco committed Apr 6, 2022
    Configuration menu
    Copy the full SHA
    008c3d9 View commit details
    Browse the repository at this point in the history
  3. Add integration tests

    alexrocco committed Apr 6, 2022
    Configuration menu
    Copy the full SHA
    52a7121 View commit details
    Browse the repository at this point in the history