Skip to content

Commit

Permalink
1.2.1 RedHat Release
Browse files Browse the repository at this point in the history
  • Loading branch information
ukclivecox committed Jul 4, 2020
1 parent 0e0b560 commit bb12768
Show file tree
Hide file tree
Showing 11 changed files with 11,451 additions and 12 deletions.
9 changes: 5 additions & 4 deletions marketplaces/redhat/scan-images.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,10 +48,11 @@ def scan_images(debug=False):
if err == None:
print("updated {path}".format(**locals()))
else:
errStr = str(err["stderr"])
if errStr.index("The image tag you are pushing already exists.") > 0:
print(f"Warning: Image already exists for {path}.")
else:
try:
errStr = str(err["stderr"])
if errStr.index("The image tag you are pushing already exists.") > 0:
print(f"Warning: Image already exists for {path}.")
except ValueError:
print("error updating {path}".format(**locals()))
print(err)

Expand Down
5 changes: 4 additions & 1 deletion operator/seldon-operator/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,15 @@ update_csv: clean_csv_${VERSION} deploy/olm-catalog/seldon-operator/${VERSION}/s
# TESTS
#

#
# Tested with 0.18.2 (0.18.1 fails)
#

scorecard:
operator-sdk scorecard -o text --bundle deploy/olm-catalog/seldon-operator --kubeconfig ~/.kube/config

#
# REQUIRED operator-courier 2.1.7
# master version of code is broken as of June 2020
#

operator-courier_ui_validate:
Expand Down

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
channels:
- currentCSV: seldon-operator.v1.2.0
- currentCSV: seldon-operator.v1.2.1
name: alpha
defaultChannel: alpha
packageName: seldon-operator-certified

Large diffs are not rendered by default.

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
channels:
- currentCSV: seldon-operator.v1.2.0
- currentCSV: seldon-operator.v1.2.1
name: alpha
defaultChannel: alpha
packageName: seldon-operator
6 changes: 3 additions & 3 deletions operator/seldon-operator/deploy/operator.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ spec:
- name: AMBASSADOR_SINGLE_NAMESPACE
value: 'false'
- name: ENGINE_CONTAINER_IMAGE_AND_VERSION
value: docker.io/seldonio/engine:1.2.1-dev
value: docker.io/seldonio/engine:1.2.1
- name: ENGINE_CONTAINER_IMAGE_PULL_POLICY
value: IfNotPresent
- name: ENGINE_CONTAINER_SERVICE_ACCOUNT_NAME
Expand Down Expand Up @@ -108,7 +108,7 @@ spec:
- name: USE_EXECUTOR
value: 'true'
- name: EXECUTOR_CONTAINER_IMAGE_AND_VERSION
value: seldonio/seldon-core-executor:1.2.1-dev
value: seldonio/seldon-core-executor:1.2.1
- name: EXECUTOR_CONTAINER_IMAGE_PULL_POLICY
value: IfNotPresent
- name: EXECUTOR_PROMETHEUS_PATH
Expand All @@ -125,7 +125,7 @@ spec:
value: http://default-broker
- name: DEFAULT_USER_ID
value: ''
image: seldonio/seldon-core-operator:1.2.1-dev
image: seldonio/seldon-core-operator:1.2.1
name: manager
ports:
- containerPort: 8443
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: operators.coreos.com/v1alpha2
kind: OperatorGroup
metadata:
name: seldon-operatorgroup
namespace: istio-test
namespace: seldon-system
spec:
targetNamespaces:
- istio-test
- seldon-system
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
apiVersion: operators.coreos.com/v1alpha1
kind: Subscription
metadata:
name: seldon-operator-subsription
namespace: openshift-operators
spec:
channel: alpha
name: seldon-operator-certified
source: seldon-operators
sourceNamespace: openshift-marketplace
config:
env:
- name: ISTIO_ENABLED
value: "true"

0 comments on commit bb12768

Please sign in to comment.