Skip to content
This repository was archived by the owner on Jan 28, 2022. It is now read-only.

Commit f5ae6be

Browse files
committed
Remove space detection
1 parent 6c3e7bd commit f5ae6be

File tree

2 files changed

+3
-13
lines changed

2 files changed

+3
-13
lines changed

Makefile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,10 +148,12 @@ else
148148
CONTROLLER_GEN=$(shell which controller-gen)
149149
endif
150150

151-
create-kindcluster:
151+
delete-kindcluster:
152152
@echo "$(shell tput setaf 1)$(shell tput bold)Deleting kind cluster if running $(shell tput sgr0)"
153153
-kind delete cluster --name ${KIND_CLUSTER_NAME}
154154

155+
create-kindcluster: delete-kindcluster
156+
155157
@echo "$(shell tput setaf 10)$(shell tput bold)Creating kind cluster $(shell tput sgr0)"
156158
kind create cluster --name ${KIND_CLUSTER_NAME} --config ./kind-cluster.yaml
157159

azure-pipelines.yaml

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,6 @@ jobs:
4141
4242
- script: |
4343
set -e
44-
# TESTING --- space check
45-
df -h
4644
4745
# Create dockercache directory
4846
mkdir -p ./.dockercache/
@@ -52,17 +50,13 @@ jobs:
5250
displayName: Build devcontainer image
5351
5452
- script: |
55-
# TESTING --- space check
56-
df -h
5753
echo "-------> Saving docker image"
5854
docker image save -o ./.dockercache/devcontainer.tar devcontainer
5955
condition: and(succeeded(), ne(variables.DOCKER_CACHE_HIT, 'true'))
6056
displayName: Save devcontainer image
6157
6258
- script: |
6359
set -e
64-
# TESTING --- space check
65-
df -h
6660
6761
# Create a directory for go mod cache
6862
mkdir -p $(System.DefaultWorkingDirectory)/.gocache
@@ -75,11 +69,6 @@ jobs:
7569
condition: succeeded()
7670
displayName: Unit, integration and load tests
7771
78-
- script: |
79-
# TESTING --- space check
80-
df -h
81-
displayName: Space check
82-
8372
- task: PublishCodeCoverageResults@1
8473
inputs:
8574
codeCoverageTool: Cobertura
@@ -99,7 +88,6 @@ jobs:
9988
failOnStandardError: false
10089
inlineScript: az acr build --registry $(ACR_NAME) --image $(IMAGE_NAME) .
10190

102-
10391
- script: |
10492
./bin/kustomize build config/default > $(Build.ArtifactStagingDirectory)/setup.yaml
10593
set -x

0 commit comments

Comments
 (0)