Skip to content

Commit f7c8597

Browse files
ZitaNemeckovaPatchback
authored and
Patchback
committed
Add instructions for seeding base images (#358)
* Add instructions for seeding base images Fixes https://issues.redhat.com/browse/AAH-484 * Correct url (cherry picked from commit ed37346)
1 parent e4b99d9 commit f7c8597

File tree

1 file changed

+18
-2
lines changed

1 file changed

+18
-2
lines changed

src/containers/execution-environment-list/execution_environment_list.tsx

+18-2
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ import {
88
ToolbarItem,
99
ToolbarContent,
1010
Tooltip,
11+
Button,
1112
} from '@patternfly/react-core';
1213
import { ExecutionEnvironmentAPI, ExecutionEnvironmentType } from 'src/api';
1314
import { filterIsSet, ParamHelper } from 'src/utilities';
@@ -89,8 +90,23 @@ class ExecutionEnvironmentList extends React.Component<
8990
<BaseHeader title='Container Registry'></BaseHeader>
9091
{noData && !loading ? (
9192
<EmptyStateNoData
92-
title={'No container registries'}
93-
description={'Container registries will appear once uploaded'}
93+
title={'No container repositories yet'}
94+
description={
95+
'You currently have no container repositories. Add a container repository via the CLI to get started.'
96+
}
97+
button={
98+
<Button
99+
variant='link'
100+
onClick={() =>
101+
window.open(
102+
'https://https://access.redhat.com/documentation/en-us/red_hat_ansible_automation_platform/2.0/html/managing_containers_in_private_automation_hub/index',
103+
'_blank',
104+
)
105+
}
106+
>
107+
Push private images
108+
</Button>
109+
}
94110
/>
95111
) : (
96112
<Main>

0 commit comments

Comments
 (0)