Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/main'
Browse files Browse the repository at this point in the history
  • Loading branch information
dchourasia committed Nov 12, 2024
2 parents 15234bf + 8743ba6 commit e543210
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 34 deletions.
10 changes: 2 additions & 8 deletions frontend/src/concepts/connectionTypes/__tests__/utils.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -388,7 +388,7 @@ describe('getConnectionModelServingCompatibleTypes', () => {
},
}),
),
).toEqual([ModelServingCompatibleTypes.OCI, ModelServingCompatibleTypes.URI]);
).toEqual([ModelServingCompatibleTypes.URI]);
expect(
getConnectionModelServingCompatibleTypes(
mockConnection({
Expand All @@ -401,11 +401,7 @@ describe('getConnectionModelServingCompatibleTypes', () => {
},
}),
),
).toEqual([
ModelServingCompatibleTypes.S3ObjectStorage,
ModelServingCompatibleTypes.OCI,
ModelServingCompatibleTypes.URI,
]);
).toEqual([ModelServingCompatibleTypes.S3ObjectStorage, ModelServingCompatibleTypes.URI]);
});
});

Expand All @@ -423,8 +419,6 @@ describe('isModelServingTypeCompatible', () => {
ModelServingCompatibleTypes.S3ObjectStorage,
),
).toBe(true);
expect(isModelServingTypeCompatible(['invalid'], ModelServingCompatibleTypes.OCI)).toBe(false);
expect(isModelServingTypeCompatible(['URI'], ModelServingCompatibleTypes.OCI)).toBe(true);
expect(isModelServingTypeCompatible(['invalid'], ModelServingCompatibleTypes.URI)).toBe(false);
expect(isModelServingTypeCompatible(['URI'], ModelServingCompatibleTypes.URI)).toBe(true);
});
Expand Down
6 changes: 0 additions & 6 deletions frontend/src/concepts/connectionTypes/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,6 @@ export const S3ConnectionTypeKeys = [

export enum ModelServingCompatibleTypes {
S3ObjectStorage = 'S3 compatible object storage',
OCI = 'OCI compliant registry',
URI = 'URI',
}

Expand All @@ -153,11 +152,6 @@ const modelServingCompatibleTypesMetadata: Record<
envVars: S3ConnectionTypeKeys,
managedType: 's3',
},
[ModelServingCompatibleTypes.OCI]: {
name: ModelServingCompatibleTypes.OCI,
resource: 'oci-compliant-registry-v1',
envVars: ['URI'],
},
[ModelServingCompatibleTypes.URI]: {
name: ModelServingCompatibleTypes.URI,
resource: 'uri-v1',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ import React from 'react';
import { Label, Popover, Stack, StackItem } from '@patternfly/react-core';
import {
CheckCircleIcon,
DegradedIcon,
ExclamationCircleIcon,
ExclamationTriangleIcon,
InProgressIcon,
Expand Down Expand Up @@ -71,8 +70,8 @@ export const ModelRegistryTableRowStatus: React.FC<ModelRegistryTableRowStatusPr
!popoverMessages.some((message) => message.includes('ContainerCreating'))
) {
statusLabel = ModelRegistryStatusLabel.Unavailable;
icon = <ExclamationCircleIcon />;
color = 'red';
icon = <ExclamationTriangleIcon />;
color = 'gold';
}
// Available
else if (availableCondition?.status === ConditionStatus.True) {
Expand All @@ -83,14 +82,14 @@ export const ModelRegistryTableRowStatus: React.FC<ModelRegistryTableRowStatusPr
// Progressing
else if (progressCondition?.status === ConditionStatus.True) {
statusLabel = ModelRegistryStatusLabel.Progressing;
icon = <InProgressIcon />;
icon = <InProgressIcon className="odh-u-spin" />;
color = 'blue';
}
// Degrading
else if (degradedCondition?.status === ConditionStatus.True) {
statusLabel = ModelRegistryStatusLabel.Degrading;
icon = <DegradedIcon />;
color = 'gold';
icon = <InProgressIcon className="odh-u-spin" />;
color = 'grey';
popoverTitle = 'Service is degrading';
}
}
Expand Down
1 change: 0 additions & 1 deletion manifests/common/connection-types/kustomization.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
resources:
- ./oci-compliant-registry-v1.yaml
- ./s3.yaml
- ./uri-v1.yaml
13 changes: 0 additions & 13 deletions manifests/common/connection-types/oci-compliant-registry-v1.yaml

This file was deleted.

0 comments on commit e543210

Please sign in to comment.