Skip to content

Commit

Permalink
Fix postgres
Browse files Browse the repository at this point in the history
  • Loading branch information
mhoshi-vm committed Dec 9, 2023
1 parent ff9beed commit c65fc70
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 13 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,13 @@
#@ load("@ytt:base64", "base64")
#@ load("@ytt:yaml", "yaml")

#@ def tdp_config():
#@ def tpb_config():
app:
plugins:
- name: "@vmware-tanzu/tdp-plugin-techinsights"
version: "0.0.2"

backend:
plugins:
- name: #@ data.values.backstage.plugin.name
version: #@ data.values.backstage.plugin.version
backend:
plugins: []
#@ end

#@ if data.values.backstage.enabled:
Expand All @@ -30,12 +27,14 @@ metadata:
spec:
build:
env:
- name: BP_OCI_REVISION
value: #@ data.values.backstage.workload.image
- name: BP_NODE_RUN_SCRIPTS
value: "set-tdp-config,portal:pack"
value: 'set-tpb-config,portal:pack'
- name: TPB_CONFIG
value: /tmp/tdp-config.yaml
value: /tmp/tpb-config.yaml
- name: TPB_CONFIG_STRING
value: #@ base64.encode(yaml.encode(tdp_config()))
value: #@ base64.encode(yaml.encode(tpb_config()))
source:
image: #@ data.values.backstage.workload.image
subPath: builder
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ backstage:
image: registry.tanzu.vmware.com/tanzu-application-platform/tap-packages@sha256:29f978561d7d931c9a118c167eae905ce41990131013339aaff10c291ac6c42b
plugin:
name: "@mhoshi-vm/plugin-crossplane-aws"
version: 0.1.2
version: 0.1.3

crossplane:
tag: v0.45.0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ postgres:
#@schema/desc "install version"
version: 1.9.0
#@schema/desc "operator version"
operator_version: 2.2.1
operator_version: 2.1.0
#@schema/desc "instance count"
count: 1
#@schema/desc "storage class"
Expand Down
2 changes: 1 addition & 1 deletion packages/tap-ecs-supplychain.tanzu.japan.com/1.7.1.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ spec:
default: '@mhoshi-vm/plugin-crossplane-aws'
version:
type: string
default: 0.1.2
default: 0.1.3
crossplane:
type: object
additionalProperties: false
Expand Down
2 changes: 1 addition & 1 deletion packages/tap-toolkit-starter.tanzu.japan.com/1.7.1.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ spec:
operator_version:
type: string
description: operator version
default: 2.2.1
default: 2.1.0
count:
type: integer
description: instance count
Expand Down

0 comments on commit c65fc70

Please sign in to comment.