-
Notifications
You must be signed in to change notification settings - Fork 0
Review how we install TDS Posgres #24
Copy link
Copy link
Open
Labels
enhancementNew feature or requestNew feature or request
Description
To do
Review the existing bash script installing TDS Postgres Operator to use the tanzu client and not Helm anymore.
The steps will require to 👍🏻
- Relocate the TDS package
- Create and export a secret to access the private registry
- Install the Package repository
- Create a config file
- Deploy the operator using the TDS postgres package
Example
imgpkg copy -b registry.tanzu.vmware.com/packages-for-vmware-tanzu-data-services/tds-packages:1.0.2 --to-repo registry.harbor.10.0.77.176.nip.io:32443/tds/tds-packages
tanzu package repository add tanzu-data-services-repository --url registry.harbor.10.0.77.176.nip.io:32443/tds/tds-packages -n tap-install
tanzu secret registry add harbor-secret \
--username <MY-REGISTRY-USERNAME> \
--password <MY-REGISTRY-PASSWORD> \
--server <MY-REGISTRY> \
--export-to-all-namespaces --yes
cat <<EOF > tanzu/tds-values.yml
dockerRegistrySecretName: harbor-secret
resources:
limits:
cpu: 500m
memory: 300Mi
requests:
cpu: 500m
memory: 300Mi
EOF
tanzu package install tds-postgres -p postgres-operator.sql.tanzu.vmware.com -v 1.7.3 -n tap-install -f tanzu/tds-values.yml
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request