Skip to content

Commit

Permalink
Merge pull request sclorg#77 from multi-arch/master
Browse files Browse the repository at this point in the history
Move templates to RHEL/CentOS/UBI 8
  • Loading branch information
hhorak committed Sep 1, 2020
2 parents 96e1791 + 8d30619 commit a596cd6
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 5 deletions.
14 changes: 12 additions & 2 deletions openshift/templates/dancer-mysql-persistent.json
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@
"from": {
"kind": "ImageStreamTag",
"namespace": "${NAMESPACE}",
"name": "perl:5.26"
"name": "perl:5.26-ubi8"
},
"env": [
{
Expand Down Expand Up @@ -325,7 +325,7 @@
"from": {
"kind": "ImageStreamTag",
"namespace": "${NAMESPACE}",
"name": "mysql:5.7"
"name": "mysql:8.0-el8"
}
}
},
Expand Down Expand Up @@ -404,6 +404,10 @@
{
"name": "MYSQL_DATABASE",
"value": "${DATABASE_NAME}"
},
{
"name": "MYSQL_DEFAULT_AUTHENTICATION_PLUGIN",
"value": "${MYSQL_DEFAULT_AUTHENTICATION_PLUGIN}"
}
],
"resources": {
Expand Down Expand Up @@ -526,6 +530,12 @@
"displayName": "Custom CPAN Mirror URL",
"description": "The custom CPAN mirror URL",
"value": ""
},
{
"name": "MYSQL_DEFAULT_AUTHENTICATION_PLUGIN",
"displayName": "MySQL authentication plugin",
"description": "The custom MySQL default authentication plugin (default: mysql_native_password), might be changed to caching_sha2_password once PHP client supports it.",
"value": "mysql_native_password"
}
]
}
14 changes: 12 additions & 2 deletions openshift/templates/dancer-mysql.json
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@
"from": {
"kind": "ImageStreamTag",
"namespace": "${NAMESPACE}",
"name": "perl:5.26"
"name": "perl:5.26-ubi8"
},
"env": [
{
Expand Down Expand Up @@ -308,7 +308,7 @@
"from": {
"kind": "ImageStreamTag",
"namespace": "${NAMESPACE}",
"name": "mysql:5.7"
"name": "mysql:8.0-el8"
}
}
},
Expand Down Expand Up @@ -385,6 +385,10 @@
{
"name": "MYSQL_DATABASE",
"value": "${DATABASE_NAME}"
},
{
"name": "MYSQL_DEFAULT_AUTHENTICATION_PLUGIN",
"value": "${MYSQL_DEFAULT_AUTHENTICATION_PLUGIN}"
}
],
"resources": {
Expand Down Expand Up @@ -500,6 +504,12 @@
"displayName": "Custom CPAN Mirror URL",
"description": "The custom CPAN mirror URL",
"value": ""
},
{
"name": "MYSQL_DEFAULT_AUTHENTICATION_PLUGIN",
"displayName": "MySQL authentication plugin",
"description": "The custom MySQL default authentication plugin (default: mysql_native_password), might be changed to caching_sha2_password once PHP client supports it.",
"value": "mysql_native_password"
}
]
}
2 changes: 1 addition & 1 deletion openshift/templates/dancer.json
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@
"from": {
"kind": "ImageStreamTag",
"namespace": "${NAMESPACE}",
"name": "perl:5.26"
"name": "perl:5.26-ubi8"
},
"env": [
{
Expand Down

0 comments on commit a596cd6

Please sign in to comment.