Skip to content
This repository has been archived by the owner on Jul 28, 2023. It is now read-only.

Commit

Permalink
Release v0.2.1 (#171)
Browse files Browse the repository at this point in the history
* Release v0.2.1

* Add version to readme
  • Loading branch information
leochr authored and navidsh committed Oct 29, 2019
1 parent 78a6167 commit fa1611a
Show file tree
Hide file tree
Showing 5 changed files with 608 additions and 1 deletion.
2 changes: 1 addition & 1 deletion build/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM registry.access.redhat.com/ubi7/ubi-minimal:latest

LABEL vendor="Appsody" \
name="Appsody Application Operator" \
version="0.2.0" \
version="0.2.1" \
summary="Image for Appsody Application Operator" \
description="This image contains the controller for Appsody Application Operator. See https://github.com/appsody/appsody-operator#appsody-application-operator"

Expand Down
82 changes: 82 additions & 0 deletions deploy/releases/0.2.1/appsody-app-cluster-rbac.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,82 @@
---
apiVersion: rbac.authorization.k8s.io/v1
kind: ClusterRole
metadata:
creationTimestamp: null
name: appsody-operator-APPSODY_OPERATOR_NAMESPACE
rules:
- apiGroups:
- ""
resources:
- pods
- services
- endpoints
- persistentvolumeclaims
- events
- configmaps
- secrets
- serviceaccounts
verbs:
- '*'
- apiGroups:
- apps
resources:
- deployments
- daemonsets
- replicasets
- statefulsets
verbs:
- '*'
- apiGroups:
- autoscaling
resources:
- horizontalpodautoscalers
verbs:
- '*'
- apiGroups:
- monitoring.coreos.com
resources:
- servicemonitors
verbs:
- '*'
- apiGroups:
- apps
resourceNames:
- appsody-operator
resources:
- deployments/finalizers
verbs:
- update
- apiGroups:
- appsody.dev
resources:
- '*'
verbs:
- '*'
- apiGroups:
- route.openshift.io
attributeRestrictions: null
resources:
- routes
verbs:
- '*'
- apiGroups:
- serving.knative.dev
attributeRestrictions: null
resources:
- services
verbs:
- '*'
---
kind: ClusterRoleBinding
apiVersion: rbac.authorization.k8s.io/v1
metadata:
name: appsody-operator-APPSODY_OPERATOR_NAMESPACE
subjects:
- kind: ServiceAccount
name: appsody-operator
namespace: APPSODY_OPERATOR_NAMESPACE
roleRef:
kind: ClusterRole
name: appsody-operator-APPSODY_OPERATOR_NAMESPACE
apiGroup: rbac.authorization.k8s.io
Loading

0 comments on commit fa1611a

Please sign in to comment.