Skip to content

Commit

Permalink
Merge pull request #10234 from jhadvig/bz2013751
Browse files Browse the repository at this point in the history
Bug 2013751: Fix wrong in-cluster hostname on the Service details page
  • Loading branch information
openshift-merge-robot committed Oct 14, 2021
2 parents 535b378 + 1540646 commit 200cc94
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/public/components/service.jsx
Expand Up @@ -209,7 +209,7 @@ const Details = ({ obj: s }) => {
<dt>{t('public~Hostname')}</dt>
<dd>
<div className="co-select-to-copy">
{s.metadata.name}.{s.metadata.namespace}.srv.cluster.local
{s.metadata.name}.{s.metadata.namespace}.svc.cluster.local
</div>
<div>{t('public~Accessible within the cluster only')}</div>
</dd>
Expand Down

0 comments on commit 200cc94

Please sign in to comment.