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

feat: update kkcore CRDs #2410

Open
wants to merge 1 commit into
base: feature-gitops
Choose a base branch
from

Conversation

dbbDylan
Copy link

What type of PR is this?

/kind feature
/kind design

What this PR does / why we need it:

Update kkcore CRDs for CAPKK

Which issue(s) this PR fixes:

Fixes #

Does this PR introduced a user-facing change?

- update: add `PipelineTemplate` CRD for CAPKK, used for create `Pipeline`.
- update: add `.Status.HostMachineMapping` for `Inventory`, used for update status between `KKMachine` and `Hosts`.

@kubesphere-prow kubesphere-prow bot added release-note kind/feature Categorizes issue or PR as related to a new feature. kind/design Categorizes issue or PR as related to design. labels Sep 18, 2024
Copy link

[APPROVALNOTIFIER] This PR is NOT APPROVED

This pull-request has been approved by: dbbDylan
Once this PR has been reviewed and has the lgtm label, please assign 24sama for approval. For more information see the Kubernetes Code Review Process.

The full list of commands accepted by this bot can be found here.

Needs approval from an approver in each of these files:

Approvers can indicate their approval by writing /approve in a comment
Approvers can cancel approval by writing /approve cancel in a comment

@kubesphere-prow kubesphere-prow bot added the size/XXL Denotes a PR that changes 1000+ lines, ignoring generated files. label Sep 18, 2024
Copy link

sonarcloud bot commented Sep 18, 2024

Comment on lines +83 to +108
// GetHostsFromGroup flatten a specific `Inventory` group with de-duplication.
func GetHostsFromGroup(inv *Inventory, groupName string, unavailableHosts, unavailableGroups map[string]struct{}) []string {
var hosts = make([]string, 0)
if v, ok := inv.Spec.Groups[groupName]; ok {
unavailableGroups[groupName] = struct{}{}
for _, cg := range v.Groups {
if _, exist := unavailableGroups[cg]; !exist {
unavailableGroups[cg] = struct{}{}
hosts = append(hosts, GetHostsFromGroup(inv, cg, unavailableHosts, unavailableGroups)...)
}
}

validHosts := make([]string, 0)
for _, hostName := range v.Hosts {
if _, ok := inv.Spec.Hosts[hostName]; ok {
if _, exist := unavailableHosts[hostName]; !exist {
unavailableHosts[hostName] = struct{}{}
validHosts = append(validHosts, hostName)
}
}
}
hosts = append(hosts, validHosts...)
}

return hosts
}
Copy link
Collaborator

Choose a reason for hiding this comment

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

move in variable package

Copy link
Collaborator

Choose a reason for hiding this comment

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

should not set as a crd.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
kind/design Categorizes issue or PR as related to design. kind/feature Categorizes issue or PR as related to a new feature. release-note size/XXL Denotes a PR that changes 1000+ lines, ignoring generated files.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants