Skip to content

Commit

Permalink
chore: make run and add gitignore for coverage
Browse files Browse the repository at this point in the history
  • Loading branch information
waveywaves committed Jun 11, 2023
1 parent d1eeb34 commit 621cb24
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ Dockerfile.cross

# Output of the go coverage tool, specifically when used with LiteIDE
*.out
coverage.txt

# Kubernetes Generated files - skip generated files, except for vendored files

Expand Down
2 changes: 1 addition & 1 deletion controllers/vcluster.go
Original file line number Diff line number Diff line change
Expand Up @@ -81,4 +81,4 @@ type VClusterToleration struct {
func BuildVClusterHelmReleaseName(uCluster *v1alpha1.UffizziCluster) string {
helmReleaseName := UCLUSTER_NAME_PREFIX + uCluster.Name
return helmReleaseName
}
}
2 changes: 1 addition & 1 deletion controllers/vcluster_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -36,4 +36,4 @@ func TestBuildVClusterHelmReleaseName(t *testing.T) {
if helmReleaseName != expectedHelmReleaseName {
t.Errorf("Expected helmReleaseName to be uffizzi-test, got %s", helmReleaseName)
}
}
}

0 comments on commit 621cb24

Please sign in to comment.