Skip to content

Commit

Permalink
Chance cloud.redhat.com to console.redhat.com
Browse files Browse the repository at this point in the history
Due to the last announcement of migration of all cloud.redhat.com located services to console.redhat.com,
we need to make sure we are not pointing to the deprecated websites.
  • Loading branch information
gkarat committed Jul 14, 2021
1 parent 88a4cfb commit 340b08e
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -680,7 +680,7 @@ export const Kafkas: K8sResourceKind[] = [
message: 'Created',
metadata: {
cloudUI:
'https://cloud.redhat.com/beta/application-services/openshift-streams/kafkas/1qCXzgiGqva0D5bXIB0Gn9g23Ni',
'https://console.redhat.com/beta/application-services/openshift-streams/kafkas/1qCXzgiGqva0D5bXIB0Gn9g23Ni',
provider: 'rhoas',
saslMechanism: 'PLAIN',
securityProtocol: 'SASL_SSL',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,11 +52,11 @@ export const ServiceToken: React.FC<ServiceTokenProps> = ({ namespace }: Service
<Trans t={t} ns="rhoas-plugin">
Enter your API token from{' '}
<a
href="https://cloud.redhat.com/openshift/token"
href="https://console.redhat.com/openshift/token"
rel="noopener noreferrer"
target="_blank"
>
https://cloud.redhat.com
https://console.redhat.com
</a>
, so we can check what services you have access to based on your subscription.
</Trans>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,12 @@ const ServiceInstance: React.FC<ServiceInstanceProps> = ({
<Trans t={t} ns="rhoas-plugin">
To make sure the instance exists and that you&lsquo;re authorized to access it, you can see
your Kafka instances at{' '}
<a href="https://cloud.redhat.com/openshift/token" rel="noopener noreferrer" target="_blank">
https://cloud.redhat.com.
<a
href="https://console.redhat.com/openshift/token"
rel="noopener noreferrer"
target="_blank"
>
https://console.redhat.com.
</a>{' '}
To discover more managed services, go to the{' '}
<Button
Expand Down
2 changes: 1 addition & 1 deletion frontend/public/module/k8s/cluster-settings.ts
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ export const getClusterName = (): string => window.SERVER_FLAGS.kubeAPIServerURL
export const getClusterID = (cv: ClusterVersionKind): string => _.get(cv, 'spec.clusterID');

export const getOCMLink = (clusterID: string): string =>
`https://cloud.redhat.com/openshift/details/${clusterID}`;
`https://console.redhat.com/openshift/details/${clusterID}`;

export const getConditionUpgradeableFalse = (resource) =>
resource.status?.conditions.find(
Expand Down

0 comments on commit 340b08e

Please sign in to comment.