Skip to content

Commit

Permalink
added installedCRDs
Browse files Browse the repository at this point in the history
  • Loading branch information
luisreciomelero committed May 24, 2024
1 parent f02ed95 commit 2cfdc44
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
installCRDs: true
image:
repository: {{ if $.Private }}{{ $.KeosRegUrl }}{{ else }}quay.io{{ end }}/jetstack/cert-manager-controller
acmesolver:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
installCRDs: true
image:
repository: {{ if $.Private }}{{ $.KeosRegUrl }}{{ else }}quay.io{{ end }}/jetstack/cert-manager-controller
acmesolver:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
installCRDs: true
image:
repository: {{ if $.Private }}{{ $.KeosRegUrl }}{{ else }}quay.io{{ end }}/jetstack/cert-manager-controller
acmesolver:
Expand Down
1 change: 0 additions & 1 deletion pkg/commons/cluster.go
Original file line number Diff line number Diff line change
Expand Up @@ -461,7 +461,6 @@ func GetClusterDescriptor(descriptorPath string) (*KeosCluster, *ClusterConfig,
if err != nil {
return nil, nil, err
}

err = validate.Struct(clusterConfig)
if err != nil {
return nil, nil, err
Expand Down
2 changes: 1 addition & 1 deletion pkg/commons/utils.go
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@ func ExecuteCommand(n nodes.Node, command string, timeout int, retries int, envV
if len(envVars) > 0 {
cmd.SetEnv(envVars[0]...)
}
retryConditions := []string{"dial tcp: lookup", "NotFound", "context deadline exceeded", "timed out waiting for the condition on"}
retryConditions := []string{"dial tcp: lookup", "NotFound", "context deadline exceeded", "timed out waiting for the condition"}
provisionCommands := strings.Contains(command, "kubectl") || strings.Contains(command, "helm") || strings.Contains(command, "clusterctl")
for i := 0; i < retries; i++ {
raw = bytes.Buffer{}
Expand Down

0 comments on commit 2cfdc44

Please sign in to comment.