Skip to content
This repository has been archived by the owner on Oct 11, 2024. It is now read-only.

Commit

Permalink
Release v0.0.6, had to update some related code dependencies (operato…
Browse files Browse the repository at this point in the history
…r-sdk, make file commands, e2e tests) (#257)
  • Loading branch information
jvoravong authored Mar 2, 2023
1 parent c92ce81 commit e801980
Show file tree
Hide file tree
Showing 11 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/continuous-integration.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:

- uses: jpkrohling/setup-operator-sdk@v1.1.0
with:
operator-sdk-version: v1.23.0
operator-sdk-version: v1.27.0

- name: ${{ matrix.target }}
run: make ${{ matrix.target }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:

- uses: jpkrohling/setup-operator-sdk@v1.1.0
with:
operator-sdk-version: v1.23.0
operator-sdk-version: v1.27.0

- name: "generate release resources"
run: make release-artifacts IMG_PREFIX="quay.io/signalfx"
Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,8 @@ help: ## Display this help.
.PHONY: ensure-generate-is-noop
ensure-generate-is-noop: USER=signalfx
ensure-generate-is-noop: set-image-controller generate bundle
if [[ `git status --porcelain` ]]; then \
git diff; \
if [[ `git status -I "createdAt" --porcelain` ]]; then \
git diff -I "createdAt"; \
echo "Build failed: a model has been changed but the generated resources aren't up to date. Run 'make generate manifests bundle' and update your PR." && exit 1; \
else \
echo "All models are in sync with generated resources."; \
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,7 @@ The Splunk OpenTelemetry Collector Operator *might* work on versions outside of
| v0.0.3 | v1.20 to v1.23 |
| v0.0.4 | v1.23 to v1.25 |
| v0.0.5 | v1.23 to v1.25 |
| v0.0.6 | v1.23 to v1.25 |

## License

Expand Down
2 changes: 1 addition & 1 deletion bundle.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ LABEL operators.operatorframework.io.bundle.manifests.v1=manifests/
LABEL operators.operatorframework.io.bundle.metadata.v1=metadata/
LABEL operators.operatorframework.io.bundle.package.v1=splunk-otel-collector-operator
LABEL operators.operatorframework.io.bundle.channels.v1=alpha
LABEL operators.operatorframework.io.metrics.builder=operator-sdk-v1.23.0
LABEL operators.operatorframework.io.metrics.builder=operator-sdk-v1.27.0
LABEL operators.operatorframework.io.metrics.mediatype.v1=metrics+v1
LABEL operators.operatorframework.io.metrics.project_layout=go.kubebuilder.io/v3

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,10 @@ metadata:
}
]
capabilities: Basic Install
operators.operatorframework.io/builder: operator-sdk-v1.23.0
createdAt: "2023-03-02T16:20:56Z"
operators.operatorframework.io/builder: operator-sdk-v1.27.0
operators.operatorframework.io/project_layout: go.kubebuilder.io/v3
name: splunk-otel-collector-operator.v0.0.5
name: splunk-otel-collector-operator.v0.0.6
namespace: splunk-otel-operator-system
spec:
apiservicedefinitions: {}
Expand Down Expand Up @@ -399,7 +400,7 @@ spec:
- --leader-elect
command:
- /manager
image: jvsplk/splunk-otel-collector-operator:v0.0.5
image: jvsplk/splunk-otel-collector-operator:v0.0.6
livenessProbe:
httpGet:
path: /healthz
Expand Down Expand Up @@ -506,7 +507,7 @@ spec:
provider:
name: Splunk Inc
url: github.com/signalfx/splunk-otel-collector-operator
version: 0.0.5
version: 0.0.6
webhookdefinitions:
- admissionReviewVersions:
- v1
Expand Down
2 changes: 1 addition & 1 deletion bundle/metadata/annotations.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ annotations:
operators.operatorframework.io.bundle.metadata.v1: metadata/
operators.operatorframework.io.bundle.package.v1: splunk-otel-collector-operator
operators.operatorframework.io.bundle.channels.v1: alpha
operators.operatorframework.io.metrics.builder: operator-sdk-v1.23.0
operators.operatorframework.io.metrics.builder: operator-sdk-v1.27.0
operators.operatorframework.io.metrics.mediatype.v1: metrics+v1
operators.operatorframework.io.metrics.project_layout: go.kubebuilder.io/v3
2 changes: 1 addition & 1 deletion config/manager/kustomization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ kind: Kustomization
images:
- name: controller
newName: jvsplk/splunk-otel-collector-operator
newTag: v0.0.5
newTag: v0.0.6
1 change: 0 additions & 1 deletion tests/e2e/gateway/01-assert.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,6 @@ spec:
fieldPath: metadata.namespace
- name: SPLUNK_MEMORY_TOTAL_MIB
value: "200"
image: quay.io/signalfx/splunk-otel-collector:0.61.0
imagePullPolicy: IfNotPresent
name: otc-container
resources:
Expand Down
1 change: 0 additions & 1 deletion tests/e2e/smoke-default/01-assert.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -491,7 +491,6 @@ spec:
fieldPath: metadata.namespace
- name: SPLUNK_MEMORY_TOTAL_MIB
value: "200"
image: quay.io/signalfx/splunk-otel-collector:0.61.0
imagePullPolicy: IfNotPresent
name: otc-container
resources:
Expand Down
4 changes: 2 additions & 2 deletions versions.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# by default with the OpenTelemetry Operator. This would usually be the latest
# stable OpenTelemetry version. When you update this file, make sure to update the
# the docs as well.
splunk-otel-collector=0.61.0
splunk-otel-collector=0.71.0

# Represents the current release of the OpenTelemetry Operator.
operator=0.0.5
operator=0.0.6

0 comments on commit e801980

Please sign in to comment.