Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions ibm_catalog.json
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@
"crn:v1:bluemix:public:iam::::role:Viewer"
],
"service_name": "Resource group only",
"notes":"Viewer access is required in the resource group you want to provision in."
"notes": "Viewer access is required in the resource group you want to provision in."
},
{
"role_crns": [
Expand Down Expand Up @@ -1084,19 +1084,19 @@
"notes": "Required for creating Virtual Private Cloud (VPC)."
},
{
"service_name": "cloud-object-storage",
"role_crns": [
"crn:v1:bluemix:public:iam::::serviceRole:Manager",
"crn:v1:bluemix:public:iam::::role:Editor"
],
"notes": "Required for creating the OpenShift cluster's internal registry storage bucket."
"service_name": "cloud-object-storage",
"role_crns": [
"crn:v1:bluemix:public:iam::::serviceRole:Manager",
"crn:v1:bluemix:public:iam::::role:Editor"
],
"notes": "Required for creating the OpenShift cluster's internal registry storage bucket."
},
{
"role_crns": [
"crn:v1:bluemix:public:iam::::role:Viewer"
],
"service_name": "Resource group only",
"notes":"Viewer access is required in the resource group you want to provision in."
"notes": "Viewer access is required in the resource group you want to provision in."
}
],
"architecture": {
Expand Down Expand Up @@ -1246,7 +1246,7 @@
},
{
"key": "access_tags",
"hidden":true,
"hidden": true,
"custom_config": {
"type": "array",
"grouping": "deployment",
Expand Down
15 changes: 15 additions & 0 deletions solutions/quickstart/outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -56,3 +56,18 @@ output "master_status" {
description = "The current status of the Kubernetes master node in the cluster."
value = module.ocp_base.master_status
}

output "next_steps_text" {
value = "Now, you can use Openshift Cluster to build, deploy, and manage containerized applications."
description = "Next steps text"
}

output "next_step_primary_label" {
value = "Go to Openshift Cluster dashboard"
description = "Primary label"
}

output "next_step_primary_url" {
value = "https://cloud.ibm.com/containers/cluster-management/clusters/${module.ocp_base.cluster_id}/overview"
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is not the Openshift dashbaord. This is the IBM Cloud cluster console page. The Openshift dashboard is based off the ingress domain. Perhaps we could keep this as a secondary one though

description = "primary url"
}