Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: Upgrade manifests to 2.3.0 #583

Open
wants to merge 1 commit into
base: main
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
2 changes: 1 addition & 1 deletion charms/kfp-api/metadata.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ resources:
oci-image:
type: oci-image
description: Backing OCI image
upstream-source: charmedkubeflow/api-server:2.2.0-4d2f32c
upstream-source: gcr.io/ml-pipeline/api-server:2.3.0
requires:
mysql:
interface: mysql
Expand Down
1 change: 1 addition & 0 deletions charms/kfp-api/src/templates/auth_manifests.yaml.j2
Original file line number Diff line number Diff line change
Expand Up @@ -205,6 +205,7 @@ rules:
- workflows/finalizers
- workfloweventbindings
- workflowtemplates
- workflowtaskresults
verbs:
- '*'
---
Expand Down
2 changes: 1 addition & 1 deletion charms/kfp-metadata-writer/metadata.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ resources:
oci-image:
type: oci-image
description: OCI image for KFP Metadata Writer
upstream-source: charmedkubeflow/metadata-writer:2.2.0-cff3205
upstream-source: gcr.io/ml-pipeline/metadata-writer:2.3.0
requires:
grpc:
interface: k8s-service
Expand Down
2 changes: 1 addition & 1 deletion charms/kfp-persistence/metadata.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ resources:
oci-image:
type: oci-image
description: Backing OCI image
upstream-source: charmedkubeflow/persistenceagent:2.2.0-8af6d3c
upstream-source: gcr.io/ml-pipeline/persistenceagent:2.3.0
requires:
kfp-api:
interface: k8s-service
Expand Down
2 changes: 1 addition & 1 deletion charms/kfp-schedwf/metadata.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ resources:
oci-image:
type: oci-image
description: Backing OCI image
upstream-source: charmedkubeflow/scheduledworkflow:2.2.0-517f00c
upstream-source: gcr.io/ml-pipeline/scheduledworkflow:2.3.0
requires:
logging:
interface: loki_push_api
Expand Down
2 changes: 1 addition & 1 deletion charms/kfp-ui/metadata.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ resources:
ml-pipeline-ui:
type: oci-image
description: OCI image for ml-pipeline-ui
upstream-source: gcr.io/ml-pipeline/frontend:2.2.0
upstream-source: gcr.io/ml-pipeline/frontend:2.3.0
requires:
object-storage:
interface: object-storage
Expand Down
1 change: 1 addition & 0 deletions charms/kfp-ui/src/charm.py
Original file line number Diff line number Diff line change
Expand Up @@ -219,6 +219,7 @@ def __init__(self, *args):
],
inputs_getter=lambda: MlPipelineUiInputs(
ALLOW_CUSTOM_VISUALIZATIONS=self.model.config["allow-custom-visualizations"],
FRONTEND_SERVER_NAMESPACE=self.model.name,
HIDE_SIDENAV=self.model.config["hide-sidenav"],
MINIO_ACCESS_KEY=self.object_storage_relation.component.get_data()[
"access-key"
Expand Down
2 changes: 2 additions & 0 deletions charms/kfp-ui/src/components/pebble_components.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ class MlPipelineUiInputs:
"""Defines the required inputs for MlPipelineUiPebbleService."""

ALLOW_CUSTOM_VISUALIZATIONS: bool
FRONTEND_SERVER_NAMESPACE: str
HIDE_SIDENAV: bool
MINIO_ACCESS_KEY: str
MINIO_SECRET_KEY: str
Expand Down Expand Up @@ -61,6 +62,7 @@ def get_layer(self) -> Layer:
"DISABLE_GKE_METADATA": "false",
"ENABLE_AUTHZ": "true",
"DEPLOYMENT": "KUBEFLOW",
"FRONTEND_SERVER_NAMESPACE": inputs.FRONTEND_SERVER_NAMESPACE,
"HIDE_SIDENAV": str(inputs.HIDE_SIDENAV).lower(),
"HTTP_AUTHORIZATION_DEFAULT_VALUE": "",
"HTTP_AUTHORIZATION_KEY": "",
Expand Down
2 changes: 1 addition & 1 deletion charms/kfp-viewer/metadata.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ resources:
kfp-viewer-image:
type: oci-image
description: OCI image for KFP Viewer
upstream-source: charmedkubeflow/viewer-crd-controller:2.2.0-aaa1d41
upstream-source: gcr.io/ml-pipeline/viewer-crd-controller:2.3.0
requires:
logging:
interface: loki_push_api
Expand Down
2 changes: 1 addition & 1 deletion charms/kfp-viz/metadata.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ resources:
oci-image:
type: oci-image
description: OCI image for ml-pipeline-visualizationserver
upstream-source: charmedkubeflow/visualization-server:2.2.0-d65cd0c
upstream-source: gcr.io/ml-pipeline/visualization-server:2.3.0
provides:
kfp-viz:
interface: k8s-service
Expand Down
Loading