Skip to content

Commit cb89692

Browse files
authored
*: release v0.0.6 (#457)
1 parent ac46cd7 commit cb89692

File tree

3 files changed

+6
-10
lines changed

3 files changed

+6
-10
lines changed

CHANGELOG.md

+3-7
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,19 @@
1-
## [Unreleased]
1+
## v0.0.6
22

33
### Added
44

55
- Added `operator-sdk up` command to help deploy an operator. Currently supports running an operator locally against an existing cluster e.g `operator-sdk up local --kubeconfig=<path-to-kubeconfig> --namespace=<operator-namespace>`. See `operator-sdk up -h` for help. [#219](https://github.com/operator-framework/operator-sdk/pull/219) [#274](https://github.com/operator-framework/operator-sdk/pull/274)
66
- Added initial default metrics to be captured and exposed by Prometheus. [#323](https://github.com/operator-framework/operator-sdk/pull/323) exposes the metrics port and [#349](https://github.com/operator-framework/operator-sdk/pull/323) adds the initial default metrics.
7+
- Added initial test framework for operators [#377](https://github.com/operator-framework/operator-sdk/pull/377), [#392](https://github.com/operator-framework/operator-sdk/pull/392), [#393](https://github.com/operator-framework/operator-sdk/pull/393)
78

89
### Changed
910

1011
- All the modules in [`pkg/sdk`](https://github.com/operator-framework/operator-sdk/tree/master/pkg/sdk) have been combined into a single package. `action`, `handler`, `informer` `types` and `query` pkgs have been consolidated into `pkg/sdk`. [#242](https://github.com/operator-framework/operator-sdk/pull/242)
1112
- The SDK exposes the Kubernetes clientset via `k8sclient.GetKubeClient()` #295
1213
- The SDK now vendors the k8s code-generators for an operator instead of using the prebuilt image `gcr.io/coreos-k8s-scale-testing/codegen:1.9.3` [#319](https://github.com/operator-framework/operator-sdk/pull/242)
1314
- The SDK exposes the Kubernetes rest config via `k8sclient.GetKubeConfig()` #338
14-
15-
### Removed
15+
- Use `time.Duration` instead of `int` for `sdk.Watch` [#427](https://github.com/operator-framework/operator-sdk/pull/427)
1616

1717
### Fixed
1818

1919
- The cache of available clients is being reset every minute for discovery of newely added resources to a cluster. [#280](https://github.com/operator-framework/operator-sdk/pull/280)
20-
21-
### Deprecated
22-
23-
### Security

pkg/generator/templates.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -295,8 +295,8 @@ required = [
295295
[[constraint]]
296296
name = "github.com/operator-framework/operator-sdk"
297297
# The version rule is used for a specific release and the master branch for in between releases.
298-
branch = "master"
299-
# version = "=v0.0.5"
298+
# branch = "master"
299+
version = "=v0.0.6"
300300
`
301301

302302
const projectGitignoreTmpl = `

version/version.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,5 @@
1515
package version
1616

1717
var (
18-
Version = "0.0.5+git"
18+
Version = "0.0.6"
1919
)

0 commit comments

Comments
 (0)