Acceptance tests fixes (#120)
* Update Kubernetes version * Update nodepool OS * Revert Kubernetes version to 1.24 * Add maintenance field to cluster-min * Remove hardcoded kubernetes version * Remove hardcoded setting * Revert minor version of Kubernetes upgrade * Fix post test check destroy * Fix missing pointer * Fix labels using wrong delimiters * Fix typo in provider config * Lint fix --------- Co-authored-by: Henrique Santos <henrique.santos@freiheit.com>
This commit is contained in:
parent
b6100ec8d5
commit
71bf63cbc9
4 changed files with 42 additions and 22 deletions
|
|
@ -229,7 +229,7 @@ func (r *projectResource) Create(ctx context.Context, req resource.CreateRequest
|
|||
// Read refreshes the Terraform state with the latest data.
|
||||
func (r *projectResource) Read(ctx context.Context, req resource.ReadRequest, resp *resource.ReadResponse) { // nolint:gocritic // function signature required by Terraform
|
||||
var model Model
|
||||
diags := req.State.Get(ctx, model)
|
||||
diags := req.State.Get(ctx, &model)
|
||||
resp.Diagnostics.Append(diags...)
|
||||
if resp.Diagnostics.HasError() {
|
||||
return
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue