Skip to content

Commit

Permalink
added changes
Browse files Browse the repository at this point in the history
  • Loading branch information
prashantrakh committed Jan 29, 2025
1 parent 3563c82 commit 563341f
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ metadata:
spec:
descriptor:
type: terraform-runner
version: "1.2.0"
version: "1.0.0"
selector:
matchLabels:
app.kubernetes.io/name: "$name"
Expand Down
5 changes: 4 additions & 1 deletion deployer-image/marketplace/schema.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ x-google-marketplace:
partnerId: "my-partner-id" # Replace with your actual Partner ID
solutionId: "my-product-id" # Replace with your actual Product ID
applicationApiVersion: v1beta1
publishedVersion: "1.2.0"
publishedVersion: "1.0.0"
publishedVersionMetadata:
releaseNote: "Initial release with Job support."
images:
Expand All @@ -25,6 +25,7 @@ properties:
type: string
title: Domain
description: Domain for deployment.
default: app.test
suffix:
type: string
title: suffix
Expand All @@ -38,10 +39,12 @@ properties:
type: string
title: Pre-shared Certificate Name
description: The name of the pre-shared SSL certificate created in your GCP account. This certificate is used for HTTPS connections in the GCE Ingress configuration.
default: marketplace-go-cloud-stackgen-com
global_static_ip_name:
type: string
title: Global Static IP Name
description: The name of the global static IP reserved in your GCP account. This IP is used for associating with GCE Ingress.
default: test
operatorServiceAccount:
type: string
title: Operator Service Account
Expand Down
2 changes: 2 additions & 0 deletions deployer-image/terraform/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@ provider "kubernetes" {
insecure = false
}



module "stackgen" {
source = "./modules/stackgen-installation"
domain = var.domain
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
locals {
temporal_helm_version = "0.33.0"
postgresql_administrator_password = random_password.db_password.result
postgresql_fqdn = "${helm_release.postgresql.name}.${helm_release.postgresql.namespace}.svc.cluster.local"
postgresql_fqdn = "postgres-postgresql.${helm_release.postgresql.namespace}.svc.cluster.local"
postgresql_administrator_login = "stackgen"
release_name = "appcd"
appcd_service_account = "stackgen-ns-${var.suffix}"
Expand Down

0 comments on commit 563341f

Please sign in to comment.