Skip to content

Commit 37cff38

Browse files
committed
templates: Use 9.6 as the default version
1 parent c00ff8e commit 37cff38

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

Diff for: examples/postgresql-ephemeral-template.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"name": "postgresql-ephemeral",
66
"annotations": {
77
"openshift.io/display-name": "PostgreSQL (Ephemeral)",
8-
"description": "PostgreSQL database service, without persistent storage. For more information about using this template, including OpenShift considerations, see https://github.com/sclorg/postgresql-container/blob/master/9.5.\n\nWARNING: Any data stored will be lost upon pod destruction. Only use this template for testing",
8+
"description": "PostgreSQL database service, without persistent storage. For more information about using this template, including OpenShift considerations, see https://github.com/sclorg/postgresql-container/.\n\nWARNING: Any data stored will be lost upon pod destruction. Only use this template for testing",
99
"iconClass": "icon-postgresql",
1010
"tags": "database,postgresql",
1111
"template.openshift.io/long-description": "This template provides a standalone PostgreSQL server with a database created. The database is not stored on persistent storage, so any restart of the service will result in all data being lost. The database name, username, and password are chosen via parameters when provisioning this service.",
@@ -14,7 +14,7 @@
1414
"template.openshift.io/support-url": "https://access.redhat.com"
1515
}
1616
},
17-
"message": "The following service(s) have been created in your project: ${DATABASE_SERVICE_NAME}.\n\n Username: ${POSTGRESQL_USER}\n Password: ${POSTGRESQL_PASSWORD}\n Database Name: ${POSTGRESQL_DATABASE}\n Connection URL: postgresql://${DATABASE_SERVICE_NAME}:5432/\n\nFor more information about using this template, including OpenShift considerations, see https://github.com/sclorg/postgresql-container/blob/master/9.5.",
17+
"message": "The following service(s) have been created in your project: ${DATABASE_SERVICE_NAME}.\n\n Username: ${POSTGRESQL_USER}\n Password: ${POSTGRESQL_PASSWORD}\n Database Name: ${POSTGRESQL_DATABASE}\n Connection URL: postgresql://${DATABASE_SERVICE_NAME}:5432/\n\nFor more information about using this template, including OpenShift considerations, see https://github.com/sclorg/postgresql-container/.",
1818
"labels": {
1919
"template": "postgresql-ephemeral-template"
2020
},
@@ -245,8 +245,8 @@
245245
{
246246
"name": "POSTGRESQL_VERSION",
247247
"displayName": "Version of PostgreSQL Image",
248-
"description": "Version of PostgreSQL image to be used (9.2, 9.4, 9.5 or latest).",
249-
"value": "9.5",
248+
"description": "Version of PostgreSQL image to be used (9.4, 9.5, 9.6 or latest).",
249+
"value": "9.6",
250250
"required": true
251251
}
252252
]

Diff for: examples/postgresql-persistent-template.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"name": "postgresql-persistent",
66
"annotations": {
77
"openshift.io/display-name": "PostgreSQL (Persistent)",
8-
"description": "PostgreSQL database service, with persistent storage. For more information about using this template, including OpenShift considerations, see https://github.com/sclorg/postgresql-container/blob/master/9.5.\n\nNOTE: Scaling to more than one replica is not supported. You must have persistent volumes available in your cluster to use this template.",
8+
"description": "PostgreSQL database service, with persistent storage. For more information about using this template, including OpenShift considerations, see https://github.com/sclorg/postgresql-container/.\n\nNOTE: Scaling to more than one replica is not supported. You must have persistent volumes available in your cluster to use this template.",
99
"iconClass": "icon-postgresql",
1010
"tags": "database,postgresql",
1111
"template.openshift.io/long-description": "This template provides a standalone PostgreSQL server with a database created. The database is stored on persistent storage. The database name, username, and password are chosen via parameters when provisioning this service.",
@@ -14,7 +14,7 @@
1414
"template.openshift.io/support-url": "https://access.redhat.com"
1515
}
1616
},
17-
"message": "The following service(s) have been created in your project: ${DATABASE_SERVICE_NAME}.\n\n Username: ${POSTGRESQL_USER}\n Password: ${POSTGRESQL_PASSWORD}\n Database Name: ${POSTGRESQL_DATABASE}\n Connection URL: postgresql://${DATABASE_SERVICE_NAME}:5432/\n\nFor more information about using this template, including OpenShift considerations, see https://github.com/sclorg/postgresql-container/blob/master/9.5.",
17+
"message": "The following service(s) have been created in your project: ${DATABASE_SERVICE_NAME}.\n\n Username: ${POSTGRESQL_USER}\n Password: ${POSTGRESQL_PASSWORD}\n Database Name: ${POSTGRESQL_DATABASE}\n Connection URL: postgresql://${DATABASE_SERVICE_NAME}:5432/\n\nFor more information about using this template, including OpenShift considerations, see https://github.com/sclorg/postgresql-container/.",
1818
"labels": {
1919
"template": "postgresql-persistent-template"
2020
},
@@ -269,8 +269,8 @@
269269
{
270270
"name": "POSTGRESQL_VERSION",
271271
"displayName": "Version of PostgreSQL Image",
272-
"description": "Version of PostgreSQL image to be used (9.2, 9.4, 9.5 or latest).",
273-
"value": "9.5",
272+
"description": "Version of PostgreSQL image to be used (9.4, 9.5, 9.6 or latest).",
273+
"value": "9.6",
274274
"required": true
275275
}
276276
]

Diff for: examples/replica/postgresql_replica.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@
7171
"name": "IMAGESTREAMTAG",
7272
"displayName": "ImageStreamTag",
7373
"description": "The OpenShift ImageStreamTag to use for PostgreSQL.",
74-
"value": "postgresql:9.5"
74+
"value": "postgresql:9.6"
7575
},
7676
{
7777
"name": "NAMESPACE",

0 commit comments

Comments
 (0)