Skip to content

Commit 266cb37

Browse files
committed
fix lint
Signed-off-by: xliuqq <xlzq1992@gmail.com>
1 parent 134b859 commit 266cb37

2 files changed

Lines changed: 1 addition & 8 deletions

File tree

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -418,7 +418,7 @@ docker-buildx-push-thinruntime-controller:
418418

419419
.PHONY: docker-buildx-push-cacheruntime-controller
420420
docker-buildx-push-cacheruntime-controller:
421-
docker buildx build --push --build-arg HELM_VERSION=${HELM_VERSION} --platform ${DOCKER_PLATFORM} ${DOCKER_NO_CACHE_OPTION} . -f ${CACHERUNTIME_DOCKERFILE} -t ${CACHERUNTIME_CONTROLLER_IMG}:${GIT_VERSION}
421+
docker buildx build --push ${DOCKER_BUILD_ARGS} --platform ${DOCKER_PLATFORM} ${DOCKER_NO_CACHE_OPTION} . -f ${CACHERUNTIME_DOCKERFILE} -t ${CACHERUNTIME_CONTROLLER_IMG}:${GIT_VERSION}
422422

423423

424424
.PHONY: docker-buildx-push-efcruntime-controller

pkg/ddc/cache/engine/volume.go

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,6 @@
1616

1717
package engine
1818

19-
import (
20-
"fmt"
21-
)
22-
23-
func (e *CacheEngine) getPersistentVolumeName() string {
24-
return fmt.Sprintf("%s-%s", e.namespace, e.name)
25-
}
2619
func (e *CacheEngine) CreateVolume() (err error) {
2720
if err = e.createFusePersistentVolume(); err != nil {
2821
return err

0 commit comments

Comments
 (0)