Skip to content
This repository was archived by the owner on Dec 10, 2024. It is now read-only.

Add instance cluster API support #893

Merged
merged 12 commits into from
Aug 5, 2020

Conversation

sfang97
Copy link

@sfang97 sfang97 commented Jul 30, 2020

Instance cluster API support was added to GitLab in 13.2, so this PR adds support for it. This is similar to the project/group cluster integration, but unlike the project/group implementation, there is no instance ID value since any instance cluster applies to the entire GitLab instance.

Instance cluster API documentation

Instance cluster API support was added to GitLab in 13.2, so add
instance cluster support to TF provider
@sfang97 sfang97 marked this pull request as draft July 30, 2020 23:16
@sfang97 sfang97 marked this pull request as ready for review July 30, 2020 23:17
Copy link
Member

@svanharmelen svanharmelen left a comment

Choose a reason for hiding this comment

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

This looks very good @sfang97! Thanks!

Do have a few change requests for the naming and struct usage, but only small things. Code looks good 👍

//
// GitLab API docs:
// https://docs.gitlab.com/ee/api/instance_clusters.html#add-existing-cluster-to-instance
type AddInstanceClusterOptions struct {
Copy link
Member

Choose a reason for hiding this comment

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

Suggested change
type AddInstanceClusterOptions struct {
type AddClusterOptions struct {

Copy link
Author

Choose a reason for hiding this comment

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

AddClusterOptions is already declared in https://github.com/xanzy/go-gitlab/blob/d3946d4f8c62bfae945062be289f13ea5e6ecfe4/project_clusters.go#L129

Copy link
Member

Choose a reason for hiding this comment

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

Same for this one, if the struct already exists, why not reuse it here versus declaring the same struct twice?

}

// PlatformKubernetes represents a GitLab Instance Cluster PlatformKubernetes.
type InstanceClusterPlatformKubernetes struct {
Copy link
Member

Choose a reason for hiding this comment

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

Suggested change
type InstanceClusterPlatformKubernetes struct {
type PlatformKubernetes struct {

Copy link
Author

@sfang97 sfang97 Jul 31, 2020

Choose a reason for hiding this comment

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

Hi @svanharmelen , thanks for the suggestion. I tried applying it but the struct PlatformKubernetes is already declared in https://github.com/xanzy/go-gitlab/blob/master/project_clusters.go:56:6: PlatformKubernetes redeclared in this block

Copy link
Member

Choose a reason for hiding this comment

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

So why not just omit the struct here and use the existing one?

Copy link
Author

Choose a reason for hiding this comment

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

Gotcha I see what you mean, pushed these changes!

//
// GitLab API docs:
// https://docs.gitlab.com/ee/api/instance_clusters.html#edit-instance-cluster
type EditInstanceClusterOptions struct {
Copy link
Member

Choose a reason for hiding this comment

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

Suggested change
type EditInstanceClusterOptions struct {
type EditClusterOptions struct {

Copy link
Author

Choose a reason for hiding this comment

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

Same thing here, EditClusterOptions is already declared in https://github.com/xanzy/go-gitlab/blob/d3946d4f8c62bfae945062be289f13ea5e6ecfe4/project_clusters.go#L177

@sfang97
Copy link
Author

sfang97 commented Jul 31, 2020

@svanharmelen Thanks for the review! I applied the non-conflicting suggestions. As for the others, the compiler complains that the new name is redeclared in this block so I didn't make those changes. Take another look and lmk if it's ready to merge! :)

}

// PlatformKubernetes represents a GitLab Instance Cluster PlatformKubernetes.
type InstanceClusterPlatformKubernetes struct {
Copy link
Member

Choose a reason for hiding this comment

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

So why not just omit the struct here and use the existing one?

//
// GitLab API docs:
// https://docs.gitlab.com/ee/api/instance_clusters.html#add-existing-cluster-to-instance
type AddInstanceClusterOptions struct {
Copy link
Member

Choose a reason for hiding this comment

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

Same for this one, if the struct already exists, why not reuse it here versus declaring the same struct twice?

@sfang97
Copy link
Author

sfang97 commented Aug 5, 2020

@svanharmelen Thanks for the review, I removed the unused structs. Ready to merge? 🚀

Copy link
Member

@svanharmelen svanharmelen left a comment

Choose a reason for hiding this comment

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

LGTM @sfang97! Thanks!

@svanharmelen svanharmelen merged commit 43efaa2 into xanzy:master Aug 5, 2020
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants