-
Notifications
You must be signed in to change notification settings - Fork 192
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update mysql-imagestreams chart. (#1560)
- Loading branch information
Showing
2 changed files
with
74 additions
and
0 deletions.
There are no files selected for viewing
14 changes: 14 additions & 0 deletions
14
charts/redhat/redhat/redhat-mysql-imagestreams/0.0.2/src/Chart.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
description: |- | ||
This content is experimental, do not use it in production. Provides a MySQL 8.0 database. | ||
For more information about using this database image, including OpenShift considerations, | ||
see https://github.com/sclorg/mysql-container/blob/master/README.md. | ||
annotations: | ||
charts.openshift.io/name: Red Hat MySQL database service imagestreams (experimental) | ||
apiVersion: v2 | ||
appVersion: 0.0.2 | ||
kubeVersion: '>=1.20.0' | ||
name: redhat-mysql-imagestreams | ||
tags: database,mysql | ||
sources: | ||
- https://github.com/sclorg/helm-charts | ||
version: 0.0.2 |
60 changes: 60 additions & 0 deletions
60
charts/redhat/redhat/redhat-mysql-imagestreams/0.0.2/src/templates/imagestreams.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
kind: ImageStream | ||
apiVersion: image.openshift.io/v1 | ||
metadata: | ||
name: mysql | ||
annotations: | ||
openshift.io/display-name: MySQL | ||
spec: | ||
tags: | ||
- name: latest | ||
annotations: | ||
openshift.io/display-name: MySQL (Latest) | ||
openshift.io/provider-display-name: 'Red Hat, Inc.' | ||
description: >- | ||
Provides a MySQL database on RHEL. For more information about using | ||
this database image, including OpenShift considerations, see | ||
https://github.com/sclorg/mysql-container/blob/master/README.md. | ||
WARNING: By selecting this tag, your application will automatically | ||
update to use the latest version of MySQL available on OpenShift, | ||
including major version updates. | ||
iconClass: icon-mysql-database | ||
tags: mysql | ||
from: | ||
kind: ImageStreamTag | ||
name: 8.0-el8 | ||
referencePolicy: | ||
type: Local | ||
- name: 8.0-el9 | ||
annotations: | ||
openshift.io/display-name: MySQL 8.0 (RHEL 9) | ||
openshift.io/provider-display-name: 'Red Hat, Inc.' | ||
description: >- | ||
Provides a MySQL 8.0 database on RHEL 9. For more information about | ||
using this database image, including OpenShift considerations, see | ||
https://github.com/sclorg/mysql-container/blob/master/README.md. | ||
iconClass: icon-mysql-database | ||
tags: mysql | ||
version: '8.0' | ||
from: | ||
kind: DockerImage | ||
name: 'registry.redhat.io/rhel9/mysql-80:latest' | ||
referencePolicy: | ||
type: Local | ||
- name: 8.0-el8 | ||
annotations: | ||
openshift.io/display-name: MySQL 8.0 (RHEL 8) | ||
openshift.io/provider-display-name: 'Red Hat, Inc.' | ||
description: >- | ||
Provides a MySQL 8.0 database on RHEL 8. For more information about | ||
using this database image, including OpenShift considerations, see | ||
https://github.com/sclorg/mysql-container/blob/master/README.md. | ||
iconClass: icon-mysql-database | ||
tags: mysql | ||
version: '8.0' | ||
from: | ||
kind: DockerImage | ||
name: 'registry.redhat.io/rhel8/mysql-80:latest' | ||
referencePolicy: | ||
type: Local |