Skip to content

Commit 4169b31

Browse files
authored
*: release v1.0.1 (#3901)
1 parent 02a68bf commit 4169b31

16 files changed

+25
-117
lines changed

CHANGELOG.md

+17
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,20 @@
1+
## v1.0.1
2+
3+
### Bug Fixes
4+
5+
- Fixed a bug with `run packagemanifests` that caused the underlying registry pod to fail to start. Changed the registry pod image from `quay.io/openshift/origin-operator-registry:latest` to `quay.io/operator-framework/upstream-registry-builder:latest`. ([#3895](https://github.com/operator-framework/operator-sdk/pull/3895))
6+
- Resolved an issue that caused bundle validation to unnecessarily restrict CSV names to a specific format. Now, only DNS-1123 subdomain validity is verified. ([#3888](https://github.com/operator-framework/operator-sdk/pull/3888))
7+
- Fix an issue in `run packagemanifests` where the registry server writes files in locations that require root. ([#3895](https://github.com/operator-framework/operator-sdk/pull/3895))
8+
- Fixed debug logging in the `bundle validate` subcommand of `operator-sdk`. ([#3899](https://github.com/operator-framework/operator-sdk/pull/3899))
9+
- `generate <bundle|packagemanifests>` now generates a CSV base with only the `AllNamespaces` install mode supported by default, since projects are cluster-scoped by default. ([#3899](https://github.com/operator-framework/operator-sdk/pull/3899))
10+
- When generating bundles and packagemanifests, remove `metadata.namespace` from namespaced resources when writing them into the `manifests` directory to avoid validation errors. ([#3899](https://github.com/operator-framework/operator-sdk/pull/3899))
11+
- Fixed a bug that caused the Helm operator not to set the `InstallSuccessful` and `UpgradeSuccessful` status reasons when the status update fails during installation and upgrade. ([#3899](https://github.com/operator-framework/operator-sdk/pull/3899))
12+
- In Helm projects, fix operator permissions for Openshift deployments by adding a `<resource>/finalizers` rule in the operator's role. ([#3899](https://github.com/operator-framework/operator-sdk/pull/3899))
13+
- Prevent `run packagemanifests` from creating an OperatorGroup if one already exists in a namespace, and use that OperatorGroup if its target namespaces exactly match those passed in `--install-mode`. See [#3681](https://github.com/operator-framework/operator-sdk/issues/3681). ([#3899](https://github.com/operator-framework/operator-sdk/pull/3899))
14+
- Stop reconciling tasks when the event raised is a rescue in Ansible-based Operators. More info: [Bugzilla 1856714](https://bugzilla.redhat.com/show_bug.cgi?id=1856714). ([#3650](https://github.com/operator-framework/operator-sdk/pull/3650))
15+
- When scaffolding scorecard configurations, use release versions instead of `latest` in image tags. ([#3899](https://github.com/operator-framework/operator-sdk/pull/3899))
16+
- `generate <bundle|packagemanifests>` will populate a CSV's `webhookDefinition[].deploymentName` by selecting an input Deployment via its PodTemplate labels using a webhook Service's label selectors, defaulting to "<service.metadata.name>-service" if none is selected. ([#3904](https://github.com/operator-framework/operator-sdk/pull/3904))
17+
118
## v1.0.0
219

320
### Since v0.19

changelog/fragments/3761.yaml

-6
This file was deleted.

changelog/fragments/bundle-validate-verbose.yaml

-4
This file was deleted.

changelog/fragments/csv-allnamespaces-default.yaml

-5
This file was deleted.

changelog/fragments/fix-run-packagemanifests-e2e.yaml

-17
This file was deleted.

changelog/fragments/gen-bundle-namespaced.yaml

-18
This file was deleted.

changelog/fragments/helm-install-status-fix.yaml

-4
This file was deleted.

changelog/fragments/helm-roles-permissions.yaml

-16
This file was deleted.

changelog/fragments/operatorgroup-conflict.yaml

-7
This file was deleted.

changelog/fragments/relax-csv-name-validation-v1.0.x.yaml

-8
This file was deleted.

changelog/fragments/rescue-reconciliation.yaml

-9
This file was deleted.

changelog/fragments/run-pkgmnfs-writable-dir.yaml

-5
This file was deleted.

changelog/fragments/scorecard_scaffolded_version.yaml

-16
This file was deleted.

internal/version/version.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ import (
2121

2222
//var needs to be used instead of const for ldflags
2323
var (
24-
Version = "v1.0.0+git"
24+
Version = "v1.0.1"
2525
GitVersion = "unknown"
2626
GitCommit = "unknown"
2727
KubernetesVersion = "unknown"

website/content/en/docs/installation/install-operator-sdk.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ $ brew install operator-sdk
3333

3434
```sh
3535
# Set the release version variable
36-
$ RELEASE_VERSION=v1.0.0
36+
$ RELEASE_VERSION=v1.0.1
3737
# Linux
3838
$ curl -LO https://github.com/operator-framework/operator-sdk/releases/download/${RELEASE_VERSION}/operator-sdk-${RELEASE_VERSION}-x86_64-linux-gnu
3939
$ curl -LO https://github.com/operator-framework/operator-sdk/releases/download/${RELEASE_VERSION}/ansible-operator-${RELEASE_VERSION}-x86_64-linux-gnu
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
title: v1.0.1
3+
weight: 998999999
4+
---
5+
6+
There are no migrations for this release! :tada:

0 commit comments

Comments
 (0)