Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
File renamed without changes.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ run: gen-mocks generate fmt vet manifests ## Run against the configured Kubernet

docker-build: test container-build ## Build docker image with the manager.

docker-push: ## Push the docker image with the manager.
docker-push: ## Pushes the docker image with the manager.
${CONTAINER_CMD} push ${IMG}

BUILDPLATFORM ?= linux/${ARCH}
Expand Down
2 changes: 1 addition & 1 deletion TODO.md
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ will automatically push changes to the chart when relevant files in the operator

### Code Linting

Settings for [static code linting](.golangci.yml) should be reviewed and updated to suit the teams preferences. A basic
Settings for [static code linting](.golangci.yaml) should be reviewed and updated to suit the teams preferences. A basic
set of rules is currently enabled and will run during PR builds for this repo.

### Error Wrapping
Expand Down
File renamed without changes.
10 changes: 5 additions & 5 deletions ci/pipeline.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -366,7 +366,7 @@ jobs:
steps:
- task: build-amd64
privileged: true
file: agent-operator-release-source/ci/container-image-build-task.yml
file: agent-operator-release-source/ci/container-image-build-task.yaml
input_mapping:
source: agent-operator-release-source
output_mapping:
Expand All @@ -379,7 +379,7 @@ jobs:
git-commit: ((.:git-commit))
- task: build-arm64
privileged: true
file: agent-operator-release-source/ci/container-image-build-task.yml
file: agent-operator-release-source/ci/container-image-build-task.yaml
input_mapping:
source: agent-operator-release-source
output_mapping:
Expand All @@ -392,7 +392,7 @@ jobs:
git-commit: ((.:git-commit))
- task: build-s390x
privileged: true
file: agent-operator-release-source/ci/container-image-build-task.yml
file: agent-operator-release-source/ci/container-image-build-task.yaml
input_mapping:
source: agent-operator-release-source
output_mapping:
Expand All @@ -405,7 +405,7 @@ jobs:
git-commit: ((.:git-commit))
- task: build-ppc64le
privileged: true
file: agent-operator-release-source/ci/container-image-build-task.yml
file: agent-operator-release-source/ci/container-image-build-task.yaml
input_mapping:
source: agent-operator-release-source
output_mapping:
Expand All @@ -418,7 +418,7 @@ jobs:
git-commit: ((.:git-commit))
- task: create-tag-files
privileged: true
file: agent-operator-release-source/ci/create-tag-file.yml
file: agent-operator-release-source/ci/create-tag-file.yaml
vars:
git-commit: ((.:git-commit))
version: ((.:agent-operator-version))
Expand Down
16 changes: 8 additions & 8 deletions ci/pr-pipeline.yml → ci/pr-pipeline.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ jobs:
- <<: *gh-status-set-pending-unit-test
- <<: *gh-status-set-pending-docker-build
- set_pipeline: self
file: pipeline-source/ci/pr-pipeline.yml
file: pipeline-source/ci/pr-pipeline.yaml
vars:
branch: *build-branch
project-berlin-gh-token: ((project-berlin-gh-token))
Expand Down Expand Up @@ -330,7 +330,7 @@ jobs:
steps:
- task: build-amd64
privileged: true
file: pipeline-source/ci/container-image-build-task.yml
file: pipeline-source/ci/container-image-build-task.yaml
input_mapping:
source: pipeline-source
output_mapping:
Expand All @@ -343,7 +343,7 @@ jobs:
git-commit: ((.:git-commit))
- task: build-arm64
privileged: true
file: pipeline-source/ci/container-image-build-task.yml
file: pipeline-source/ci/container-image-build-task.yaml
input_mapping:
source: pipeline-source
output_mapping:
Expand All @@ -356,7 +356,7 @@ jobs:
git-commit: ((.:git-commit))
- task: build-s390x
privileged: true
file: pipeline-source/ci/container-image-build-task.yml
file: pipeline-source/ci/container-image-build-task.yaml
input_mapping:
source: pipeline-source
output_mapping:
Expand All @@ -369,7 +369,7 @@ jobs:
git-commit: ((.:git-commit))
- task: build-ppc64le
privileged: true
file: pipeline-source/ci/container-image-build-task.yml
file: pipeline-source/ci/container-image-build-task.yaml
input_mapping:
source: pipeline-source
output_mapping:
Expand All @@ -382,7 +382,7 @@ jobs:
git-commit: ((.:git-commit))
- task: create-tag-files
privileged: true
file: pipeline-source/ci/create-tag-file.yml
file: pipeline-source/ci/create-tag-file.yaml
vars:
git-commit: ((.:git-commit))
version: ((.:agent-operator-version))
Expand Down Expand Up @@ -545,7 +545,7 @@ jobs:
cat ../target/instana-agent-operator.yaml
- task: build-bundle-docker
privileged: true
file: pipeline-source/ci/container-image-build-task.yml
file: pipeline-source/ci/container-image-build-task.yaml
input_mapping:
source: docker-input
output_mapping:
Expand All @@ -558,7 +558,7 @@ jobs:
git-commit: ((.:git-commit))
- task: create-tag-files
privileged: true
file: pipeline-source/ci/create-tag-file.yml
file: pipeline-source/ci/create-tag-file.yaml
vars:
git-commit: ((.:git-commit))
version: ((.:agent-operator-version))
Expand Down