Skip to content
This repository was archived by the owner on Jul 9, 2025. It is now read-only.

Commit 6fff011

Browse files
fix: Enable catalog onboarding (#16)
* enable catalog onboarding
1 parent e561205 commit 6fff011

File tree

4 files changed

+14
-10
lines changed

4 files changed

+14
-10
lines changed

.catalog-onboard-pipeline.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
---
22
apiVersion: v1
33
offerings:
4-
- name: Watson_X_-_Generative_AI
4+
- name: watsonx_generative_ai
55
kind: solution
66
catalog_id: 7df1e4ca-d54c-4fd0-82ce-3d13247308cd
7-
offering_id: d113359a-921d-4474-965a-4e612c4c1bfe
7+
offering_id: 30045dc8-ab5b-4fcd-97e6-28d0655809b2
88
variations:
9-
- name: genai-stack-1234
9+
- name: genai-stack-standard
1010
mark_ready: false
1111
install_type: fullstack
1212
format_kind: stack

.releaserc

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@
1010
}],
1111
["@semantic-release/exec", {
1212
"successCmd": "echo \"SEMVER_VERSION=${nextRelease.version}\" >> $GITHUB_ENV"
13-
}]
13+
}],
14+
["@semantic-release/exec",{
15+
"publishCmd": "./ci/trigger-catalog-onboarding-pipeline.sh --version=v${nextRelease.version}"
16+
}]
1417
]
1518
}
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"ibmcloud_api_key": $VALIDATION_APIKEY,
3+
"prefix": $PREFIX,
4+
"resource_group_name": "catalog-validation-genai",
5+
"enable_platform_logs_metrics": false,
6+
"secret_manager_service_plan": "trial"
7+
}

tests/pr_test.go

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ package tests
22

33
import (
44
"github.com/stretchr/testify/assert"
5-
"github.com/terraform-ibm-modules/ibmcloud-terratest-wrapper/common"
65
"github.com/terraform-ibm-modules/ibmcloud-terratest-wrapper/testprojects"
76
"testing"
87
)
@@ -15,15 +14,10 @@ func TestProjectsFullTest(t *testing.T) {
1514
ParallelDeploy: true,
1615
})
1716

18-
privateKey, _, kerr := common.GenerateTempGPGKeyPairBase64()
19-
if kerr != nil {
20-
t.Fatal(kerr)
21-
}
2217
options.StackInputs = map[string]interface{}{
2318
"resource_group_name": options.ResourceGroup,
2419
"ibmcloud_api_key": options.RequiredEnvironmentVars["TF_VAR_ibmcloud_api_key"],
2520
"prefix": options.Prefix,
26-
"signing_key": privateKey,
2721
"secret_manager_service_plan": "trial",
2822
"enable_platform_logs_metrics": false,
2923
}

0 commit comments

Comments
 (0)