diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index 9a755e9..6848499 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -54,8 +54,8 @@ jobs: with: go-version: "1.20" - name: Generate the coverage output - run: make test-coverage + run: go tool cover -html=coverage.out -o coverage.html - name: Send the coverage output uses: shogo82148/actions-goveralls@v1 with: - path-to-profile: coverage-all.out \ No newline at end of file + path-to-profile: coverage.out \ No newline at end of file diff --git a/install.md b/install.md deleted file mode 100644 index ce99452..0000000 --- a/install.md +++ /dev/null @@ -1,12 +0,0 @@ -kubebuilder init --domain samir.io --repo secret-sync-operator -kubebuilder create api --group sync --version v1 --kind SecretSync -make manifests -make install -make run - - -Set the environment variables with eval $(minikube docker-env) -Build the image with the Docker daemon of Minikube (e.g., docker build -t my-image .) -Set the image in the pod specification like the build tag (e.g., my-image) -Set the imagePullPolicy to Never, otherwise Kubernetes will try to download the image. -Important note: You have to run eval $(minikube docker-env) on each terminal you want to use, since it only sets the environment variables for the current shell session. \ No newline at end of file