@kinvolk/headlamp-plugin
Version:
The needed infrastructure for building Headlamp plugins.
65 lines (64 loc) • 3.41 kB
JavaScript
import { jsx as _jsx } from "react/jsx-runtime";
/*
* Copyright 2025 The Kubernetes Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import { useTranslation } from 'react-i18next';
import { useParams } from 'react-router-dom';
import BackendTrafficPolicy from '../../lib/k8s/backendTrafficPolicy';
import EmptyContent from '../common/EmptyContent';
import LabelListItem from '../common/LabelListItem';
import { DetailsGrid } from '../common/Resource';
import SectionBox from '../common/SectionBox';
import { NameValueTable } from '../common/SimpleTable';
function RetryConstraintTable(props) {
const { retry } = props;
const { t } = useTranslation(['glossary', 'translation']);
const mainRows = [
{
name: t('translation|Retry Budget'),
value: retry.budget
? `${retry.budget.percent ?? 20}% over ${retry.budget.interval ?? '10s'}`
: t('translation|Not specified'),
},
{
name: t('translation|Min Retry Rate'),
value: retry.minRetryRate
? `${retry.minRetryRate.count ?? 10} reqs/${retry.minRetryRate.interval ?? '1s'}`
: t('translation|Not specified'),
},
];
return _jsx(NameValueTable, { rows: mainRows });
}
export default function BackendTrafficPolicyDetails(props) {
const params = useParams();
const { name = params.name, namespace = params.namespace } = props;
const { t } = useTranslation(['glossary', 'translation']);
return (_jsx(DetailsGrid, { resourceType: BackendTrafficPolicy, name: name, namespace: namespace, withEvents: true, extraSections: (item) => item && [
{
id: 'backendtrafficpolicy.targets',
section: (_jsx(SectionBox, { title: t('Targets'), children: item.targetRefs?.length > 0 ? (_jsx(LabelListItem, { labels: item.targetRefs.map(ref => ref.sectionName
? `${ref.kind} (${ref.name}:${ref.sectionName})`
: `${ref.kind} (${ref.name})`) })) : (_jsx(EmptyContent, { children: t('No targets defined') })) })),
},
{
id: 'backendtrafficpolicy.retryconstraint',
section: (_jsx(SectionBox, { title: t('Retry Constraint'), children: item.retryConstraint ? (_jsx(RetryConstraintTable, { retry: item.retryConstraint })) : (_jsx(EmptyContent, { children: t('No retry constraint configured') })) })),
},
{
id: 'backendtrafficpolicy.sessionpersistence',
section: (_jsx(SectionBox, { title: t('Session Persistence'), children: item.sessionPersistence ? (_jsx(LabelListItem, { labels: Object.entries(item.sessionPersistence).map(([key, value]) => `${key}: ${String(value)}`) })) : (_jsx(EmptyContent, { children: t('No session persistence configured') })) })),
},
] }));
}