From e2b549875a5c47d4bb45f105b9aada754823829e Mon Sep 17 00:00:00 2001 From: zyy17 Date: Wed, 27 Nov 2024 23:26:47 +0800 Subject: [PATCH] fix(standalone): remove conflict data home settings --- controllers/greptimedbstandalone/deployer.go | 1 - 1 file changed, 1 deletion(-) diff --git a/controllers/greptimedbstandalone/deployer.go b/controllers/greptimedbstandalone/deployer.go index e05ca13..d7fbaf0 100644 --- a/controllers/greptimedbstandalone/deployer.go +++ b/controllers/greptimedbstandalone/deployer.go @@ -397,7 +397,6 @@ func (b *standaloneBuilder) containerPorts() []corev1.ContainerPort { func (b *standaloneBuilder) generateMainContainerArgs() []string { var args = []string{ "standalone", "start", - "--data-home", "/data", "--rpc-addr", fmt.Sprintf("0.0.0.0:%d", b.standalone.Spec.RPCPort), "--mysql-addr", fmt.Sprintf("0.0.0.0:%d", b.standalone.Spec.MySQLPort), "--http-addr", fmt.Sprintf("0.0.0.0:%d", b.standalone.Spec.HTTPPort),