Skip to content
This repository has been archived by the owner on Nov 13, 2019. It is now read-only.

Updated repo name #8

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public void eventReceived(Action action, DeploymentConfig dc) {

final Map<String, String> labels = dc.getMetadata().getLabels();
final String name = dc.getMetadata().getName();
logger.info("DeploymentConfig watch received event " + action + " on map " + name + " with labels" + labels);
logger.info("DeploymentConfig watch received event " + action + " on deploymentconfig " + name + " with labels" + labels);

try {
switch (action) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public void eventReceived(Action action, Deployment dc) {

final Map<String, String> labels = dc.getMetadata().getLabels();
final String name = dc.getMetadata().getName();
logger.info("Deployment watch received event " + action + " on map " + name + " with labels" + labels);
logger.info("Deployment watch received event " + action + " on deployment " + name + " with labels" + labels);

try {
switch (action) {
Expand Down
2 changes: 1 addition & 1 deletion Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ $ oc adm policy add-cluster-role-to-user cluster-admin system:serviceaccount:myp

## Deployment using ABP

The Operator can be deployed using an Ansible Playbook Bundle from the [OCP Broker](https://github.com/project-streamzi/ocp-broker).
The Operator can be deployed using an Ansible Playbook Bundle from the [OCP Broker](https://github.com/rh-event-flow/ocp-broker).
Once the OCP Broker is installed the Environment Variable Operator will appear in the Service Catalog.

TODO: Investigate permissions more
Expand Down