Skip to content

Commit 77d8662

Browse files
automated commit
Signed-off-by: Public copy <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 3d44bee commit 77d8662

File tree

3 files changed

+8
-1
lines changed

3 files changed

+8
-1
lines changed

images/postgres/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ Be sure to replace the `ORGANIZATION` placeholder with the name used for your or
3434
<!--body:start-->
3535
## Compatibility Notes
3636

37-
The Chainguard PostgreSQL Image is comparable to its upstream counterpart, [the official PostgreSQL Image from Docker Hub](https://hub.docker.com/_/postgres). However, the Chainguard image does not run as the root user and contains only the minimum set of tools and dependencies needed to function; for example, it does not include a package manager. Unlike many other Chainguard images, though, the PostgreSQL image does include a shell, allowing you to manage databases interactively.
37+
The Chainguard PostgreSQL Image is comparable to its upstream counterpart, [the official PostgreSQL Image from Docker Hub](https://hub.docker.com/_/postgres). However, the Chainguard image contains only the minimum set of tools and dependencies needed to function; for example, it does not include a package manager. Unlike many other Chainguard images, though, the PostgreSQL image does include a shell, allowing you to manage databases interactively.
3838

3939
### Migrating to the Chainguard PostgreSQL image
4040

tflib/imagetest/helm/main.tf

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@ if ! helm install ${local.name} $chart \
5858
%{if var.git_repo != ""}--dependency-update%{endif} \
5959
%{if var.chart_version != ""}--version ${var.chart_version}%{endif} \
6060
%{if var.wait}--wait --wait-for-jobs%{endif} \
61+
%{if var.skip_schema_validation}--skip-schema-validation%{endif} \
6162
--timeout ${var.timeout} \
6263
%{if length(var.values_files) != 0}--values ${join(",", var.values_files)}%{endif} \
6364
%{if var.dry}--dry-run%{endif} \

tflib/imagetest/helm/variables.tf

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,12 @@ variable "wait" {
4545
default = true
4646
}
4747

48+
variable "skip_schema_validation" {
49+
description = "Indicates whether Helm will be run with --skip-schema-validation or not."
50+
type = bool
51+
default = false
52+
}
53+
4854
variable "git_repo" {
4955
description = "A git repository to fetch the chart from instead of a chart index. Cannot be specified alongside --repo"
5056
default = ""

0 commit comments

Comments
 (0)