Skip to content

Commit

Permalink
Changes for release 0.3.0 (#88)
Browse files Browse the repository at this point in the history
* Update docs + changelog

* Add release 0.3.0 + olm updates
  • Loading branch information
leochr authored Jan 9, 2020
1 parent 93b899b commit c2cbc1f
Show file tree
Hide file tree
Showing 20 changed files with 7,519 additions and 15 deletions.
4 changes: 0 additions & 4 deletions .osdk-scorecard.yaml

This file was deleted.

5 changes: 3 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
# Changelog
All notable changes to this project will be documented in this file.

## [Unreleased]
## [0.3.0]

### Changed

Expand All @@ -19,5 +19,6 @@ All notable changes to this project will be documented in this file.

The initial release of the helm-based Open Liberty Operator.

[Unreleased]: https://github.com/OpenLiberty/open-liberty-operator/compare/v0.0.1...HEAD
[Unreleased]: https://github.com/OpenLiberty/open-liberty-operator/compare/v0.3.0...HEAD
[0.3.0]: https://github.com/OpenLiberty/open-liberty-operator/compare/v0.0.1...v0.3.0
[0.0.1]: https://github.com/OpenLiberty/open-liberty-operator/releases/tag/v0.0.1
86 changes: 86 additions & 0 deletions deploy/cluster_role.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,86 @@
apiVersion: rbac.authorization.k8s.io/v1
kind: ClusterRole
metadata:
creationTimestamp: null
name: open-liberty-operator
rules:
- apiGroups:
- ""
resources:
- pods
- services
- services/finalizers
- endpoints
- persistentvolumeclaims
- events
- configmaps
- secrets
- serviceaccounts
- pods/exec
verbs:
- '*'
- apiGroups:
- apps
resources:
- deployments
- daemonsets
- replicasets
- statefulsets
verbs:
- '*'
- apiGroups:
- autoscaling
resources:
- horizontalpodautoscalers
verbs:
- '*'
- apiGroups:
- monitoring.coreos.com
resources:
- servicemonitors
verbs:
- get
- create
- '*'
- apiGroups:
- apps
resourceNames:
- open-liberty-operator
resources:
- deployments/finalizers
verbs:
- update
- apiGroups:
- ""
resources:
- pods
verbs:
- get
- apiGroups:
- apps
resources:
- replicasets
verbs:
- get
- apiGroups:
- openliberty.io
resources:
- '*'
- openlibertytraces
- openlibertydumps
verbs:
- '*'
- apiGroups:
- route.openshift.io
attributeRestrictions: null
resources:
- routes
verbs:
- '*'
- apiGroups:
- serving.knative.dev
attributeRestrictions: null
resources:
- services
verbs:
- '*'
12 changes: 12 additions & 0 deletions deploy/cluster_role_binding.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
kind: ClusterRoleBinding
apiVersion: rbac.authorization.k8s.io/v1
metadata:
name: open-liberty-operator
subjects:
- kind: ServiceAccount
name: open-liberty-operator
namespace: OPEN_LIBERTY_OPERATOR_NAMESPACE
roleRef:
kind: ClusterRole
name: open-liberty-operator
apiGroup: rbac.authorization.k8s.io
File renamed without changes.
Loading

0 comments on commit c2cbc1f

Please sign in to comment.