Skip to content

Commit

Permalink
skip: update based on feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
DnPlas committed Oct 26, 2023
1 parent 2ddf44d commit 38b1f7d
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
2 changes: 2 additions & 0 deletions charms/kfp-persistence/src/charm.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,8 @@ def __init__(self, *args, **kwargs):
# Upstream defines this in the configmap persistenceagent-config-*
"MULTIUSER": "true",
"NAMESPACE": "",
"TL_SECONDS_AFTER_WORKFLOW_FINISH": "86400",
"NUM_WORKERS": "2",
},
# provide function to pebble with which it can get service configuration from
# relation
Expand Down
7 changes: 5 additions & 2 deletions charms/kfp-profile-controller/src/charm.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,11 @@
"src/templates/secrets.yaml.j2",
]
KFP_DEFAULT_PIPELINE_ROOT = ""
KFP_IMAGES_VERSION = "2.0.1"
METADATA_GRPC_SERVICE_HOST = "mlmd.kubeflow"
KFP_IMAGES_VERSION = "2.0.2"
# This service name must be the Service from the mlmd-operator
# FIXME: leaving it hardcoded now, but we should share this
# host and port through relation data
METADATA_GRPC_SERVICE_HOST = "metadata-grpc-service"
METADATA_GRPC_SERVICE_PORT = "8080"
NAMESPACE_LABEL = "pipelines.kubeflow.org/enabled"
SYNC_CODE_FILE = Path("files/upstream/sync.py")
Expand Down
2 changes: 1 addition & 1 deletion charms/kfp-profile-controller/tests/unit/test_operator.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"CONTROLLER_PORT": 80,
"DISABLE_ISTIO_SIDECAR": "false",
"KFP_DEFAULT_PIPELINE_ROOT": "",
"KFP_VERSION": "2.0.1",
"KFP_VERSION": "2.0.2",
"METADATA_GRPC_SERVICE_HOST": "mlmd.kubeflow",
"METADATA_GRPC_SERVICE_PORT": "8080",
"MINIO_ACCESS_KEY": "access-key",
Expand Down

0 comments on commit 38b1f7d

Please sign in to comment.