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

Add support for getting and updating boot script #545

Merged
merged 3 commits into from
Feb 14, 2024

Conversation

pawelbeza
Copy link
Contributor

@pawelbeza pawelbeza commented Jan 22, 2024

Description

This PR adds for getting and setting the boot script

Fixes #546 (issue)

Type of change

Please delete options that are not relevant.

  • Bug fix (non-breaking change which fixes an issue)
  • New feature (non-breaking change which adds functionality)
  • Improvement (improve existing resource(s) or datasource(s))
  • Breaking change (fix or feature that would cause existing functionality to not work as expected)
  • Documentation update
data "ovh_dedicated_server_boots" "rescue" {
  service_name = "nsxxxxxxx.ip-xx-xx-xx.eu"
  boot_type    = "rescue"
  kernel       = "rescue64-pro"
}

resource "ovh_dedicated_server_update" "server" {
  service_name = "nsxxxxxxx.ip-xx-xx-xx.eu"
  boot_script  = "TEST SCRIPT"
  monitoring   = true
  state        = "ok"
}

Checklist:

  • My code follows the style guidelines of this project
  • I have performed a self-review of my code
  • I have commented my code, particularly in hard-to-understand areas
  • I have made corresponding changes to the documentation
  • My changes generate no new warnings or issues
  • New and existing acceptance tests pass locally with my changes
  • I ran succesfully go mod vendor if I added or modify go.mod file

@amstuta
Copy link
Collaborator

amstuta commented Jan 24, 2024

Thanks for your contribution @pawelbeza !
The changes to add boot_script parameter are almost ready to merge, but could you move all the changes not related to resources/datasources (goreleaser and the registry manifest) in another PR ?
Thanks !

@pawelbeza pawelbeza force-pushed the pawel/boot-script branch 2 times, most recently from 783ee35 to 70ccafc Compare January 24, 2024 09:27
@pawelbeza
Copy link
Contributor Author

@amstuta should be good to go

@amstuta
Copy link
Collaborator

amstuta commented Jan 24, 2024

sorry I just think of this now, but could you add check for the boot_script property in TestAccDedicatedServerUpdate_basic and TestAccDedicatedServerDataSource_basic ?

@pawelbeza
Copy link
Contributor Author

pawelbeza commented Jan 24, 2024

@amstuta just added some tests:)

@amstuta
Copy link
Collaborator

amstuta commented Jan 24, 2024

@amstuta just added some tests:)

I meant tests that create a resource ovh_dedicated_server_update with a boot script, using a config like:

const testAccDedicatedServerUpdateConfigWithBootScript_Basic = `
data ovh_dedicated_server_boots "rescue" {
  service_name = "%s"
  boot_type    = "rescue"
  kernel       = "rescue-customer"
}

resource ovh_dedicated_server_update "server" {
  service_name = data.ovh_dedicated_server_boots.rescue.service_name
  boot_script  = "test"
  monitoring   = true
  state        = "ok"
}
`

So that we can check in the test that the boot script is correctly set in the resource when it is read.

@amstuta amstuta merged commit e635493 into ovh:master Feb 14, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

[FEATURE] Add support for getting/updating the boot script
2 participants