Skip to content

Commit 896b62e

Browse files
authored
SYS-666 fixes - mariadb-galera, nagiosql (#240)
1 parent 68186cd commit 896b62e

11 files changed

Lines changed: 9 additions & 20 deletions

File tree

images/data-sync/helm/values.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,6 @@ configmap:
141141
auto = true
142142
batch = true
143143
confirmbigdel = true
144-
copythreshold = 10000
145144
# copyquoterem feature seems to be gone as of 2.53.3
146145
## copyquoterem = false
147146
# SYS-400 overall performance is absolutely awful without this

images/data-sync/src/common.prf

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ ignore = Name *socket
66
auto = true
77
batch = true
88
confirmbigdel = true
9-
copythreshold = 10000
109

1110
group = true
1211
owner = true

images/mariadb-galera/README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,6 @@ troubleshooting, if you're running a recent version of Docker you can override
4141
its ingress load-balancer thus:
4242

4343
~~~
44-
version: "3.2"
4544
services:
4645
db:
4746
...
@@ -149,4 +148,4 @@ Thanks to ashraf-s9s of severalnines for the healthcheck script.
149148

150149
If you want to make improvements to this image, see [CONTRIBUTING](https://github.com/instantlinux/docker-tools/blob/main/CONTRIBUTING.md).
151150

152-
[![](https://img.shields.io/badge/license-GPL--2.0-red.svg)](https://choosealicense.com/licenses/gpl-2.0/ "License badge") [![](https://img.shields.io/badge/code-mariadb%2Fserver-blue)](https://github.com/MariaDB/server "Code repo")
151+
[![](https://img.shields.io/badge/license-GPL--2.0-red.svg)](https://choosealicense.com/licenses/gpl-2.0/ "License badge") [![](https://img.shields.io/badge/code-mariadb%2Fserver-blue)](https://github.com/MariaDB/server "Code repo")

images/nagiosql/Dockerfile

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -30,13 +30,13 @@ COPY html /var/www/html
3030
RUN addgroup -g $NAGIOS_GID nagios && \
3131
adduser -u $APACHE_UID -g Apache -DSH -h /var/www apache && \
3232
adduser -u $NAGIOS_UID -g "Nagios Server" -DSH -h /var/nagios nagios && \
33-
apk add --update --no-cache apache2 curl nagios=$NAGIOS_VERSION php82 \
34-
php82-apache2 php82-ftp php82-gettext php82-mysqli php82-pear php82-session \
35-
php82-pecl-ssh2 tzdata && \
33+
apk add --update --no-cache apache2 curl nagios=$NAGIOS_VERSION php83 \
34+
php83-apache2 php83-ftp php83-gettext php83-mysqli php83-pear php83-session \
35+
php83-pecl-ssh2 tzdata && \
3636
addgroup apache nagios && \
37-
echo 'date.timezone = UTC' > /etc/php82/conf.d/50-tz.ini && \
37+
echo 'date.timezone = UTC' > /etc/php83/conf.d/50-tz.ini && \
3838
echo 'include_path = ".:/var/www/nagiosql/libraries/pear"' \
39-
> /etc/php82/conf.d/50-include.ini && \
39+
> /etc/php83/conf.d/50-include.ini && \
4040
cd /tmp && \
4141
curl -sLo $NAGIOSQL_DOWNLOAD \
4242
https://sourceforge.net/projects/nagiosql/files/nagiosql/NagiosQL%20${NAGIOSQL_VERSION}/${NAGIOSQL_DOWNLOAD} && \

images/nagiosql/docker-compose.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
version: "3.1"
2-
31
services:
42
app:
53
image: instantlinux/nagios:${VERSION_NAGIOS:-latest}

lib/build/Makefile.docker_image

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,9 @@ endif
1919
ifeq ($(IMAGE),data-sync)
2020
PLATFORMS = linux/amd64,linux/aarch64
2121
endif
22+
ifeq ($(IMAGE),mariadb-galera)
23+
PLATFORMS = linux/amd64
24+
endif
2225
ifeq ($(IMAGE),mythtv-backend)
2326
PLATFORMS = linux/amd64
2427
endif

services/haproxy-keepalived/docker-compose.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
version: "3.1"
2-
31
services:
42

53
app:

services/keycloak/docker-compose.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
version: '3'
21
services:
32
db:
43
image: mariadb:10

services/mythtv-backend/docker-compose.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
version: "3.1"
2-
31
services:
42
app:
53
image: ${REGISTRY_URI:-instantlinux}/mythtv-backend:${VERSION_MYTHTV}

services/nut-upsd/docker-compose.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
version: "3.1"
2-
31
services:
42
app:
53
image: ${REGISTRY_URI:-instantlinux}/nut-upsd:latest

0 commit comments

Comments
 (0)