mirror of
https://github.com/arangodb/kube-arangodb.git
synced 2024-12-14 11:57:37 +00:00
Removed duplicated debug output.
This commit is contained in:
parent
5dce377765
commit
407c53c4e9
2 changed files with 0 additions and 6 deletions
|
@ -140,9 +140,6 @@ func createArangodArgs(apiObject metav1.Object, deplSpec api.DeploymentSpec, gro
|
|||
}
|
||||
|
||||
versionHasAdvertisedEndpoint := versionHasAdvertisedEndpoint(version)
|
||||
if !versionHasAdvertisedEndpoint && deplSpec.ExternalAccess.HasAdvertisedEndpoint() {
|
||||
fmt.Printf("Advertised endpoint is not supported by version %s\n", version)
|
||||
}
|
||||
|
||||
/* if config.ServerThreads != 0 {
|
||||
options = append(options,
|
||||
|
|
|
@ -39,7 +39,6 @@ func (o *Operator) waitForCRD(enableDeployment, enableDeploymentReplication, ena
|
|||
if err := crd.WaitCRDReady(o.KubeExtCli, deplapi.ArangoDeploymentCRDName); err != nil {
|
||||
return maskAny(err)
|
||||
}
|
||||
log.Debug().Msg("ArangoDeployment CRD ready")
|
||||
}
|
||||
|
||||
if enableDeploymentReplication {
|
||||
|
@ -47,7 +46,6 @@ func (o *Operator) waitForCRD(enableDeployment, enableDeploymentReplication, ena
|
|||
if err := crd.WaitCRDReady(o.KubeExtCli, replapi.ArangoDeploymentReplicationCRDName); err != nil {
|
||||
return maskAny(err)
|
||||
}
|
||||
log.Debug().Msg("ArangoDeploymentReplication CRD ready")
|
||||
}
|
||||
|
||||
if enableStorage {
|
||||
|
@ -55,7 +53,6 @@ func (o *Operator) waitForCRD(enableDeployment, enableDeploymentReplication, ena
|
|||
if err := crd.WaitCRDReady(o.KubeExtCli, lsapi.ArangoLocalStorageCRDName); err != nil {
|
||||
return maskAny(err)
|
||||
}
|
||||
log.Debug().Msg("ArangoLocalStorage CRD ready")
|
||||
}
|
||||
|
||||
log.Debug().Msg("CRDs ready")
|
||||
|
|
Loading…
Reference in a new issue