mirror of
https://github.com/goharbor/harbor.git
synced 2024-11-22 10:15:35 +01:00
Upgrade the internal PostgreSQL to 14 in 2.9.0 (#18612)
Fix #18338 Signed-off-by: Yang Jiao <jiaoya@vmware.com> Co-authored-by: Wang Yan <wangyan@vmware.com>
This commit is contained in:
parent
0a3509f8a7
commit
aaea068cce
@ -14,7 +14,7 @@ COPY ./make/photon/db/initial-registry.sql /docker-entrypoint-initdb.d/
|
|||||||
RUN chown -R postgres:postgres /docker-entrypoint.sh /docker-healthcheck.sh /docker-entrypoint-initdb.d \
|
RUN chown -R postgres:postgres /docker-entrypoint.sh /docker-healthcheck.sh /docker-entrypoint-initdb.d \
|
||||||
&& chmod u+x /docker-entrypoint.sh /docker-healthcheck.sh
|
&& chmod u+x /docker-entrypoint.sh /docker-healthcheck.sh
|
||||||
|
|
||||||
ENTRYPOINT ["/docker-entrypoint.sh", "", "13"]
|
ENTRYPOINT ["/docker-entrypoint.sh", "13", "14"]
|
||||||
HEALTHCHECK CMD ["/docker-healthcheck.sh"]
|
HEALTHCHECK CMD ["/docker-healthcheck.sh"]
|
||||||
|
|
||||||
USER postgres
|
USER postgres
|
||||||
|
@ -2,7 +2,7 @@ FROM photon:4.0
|
|||||||
|
|
||||||
ENV PGDATA /var/lib/postgresql/data
|
ENV PGDATA /var/lib/postgresql/data
|
||||||
|
|
||||||
RUN tdnf install -y shadow gzip postgresql13 findutils bc >> /dev/null \
|
RUN tdnf install -y shadow gzip postgresql13 postgresql findutils bc >> /dev/null \
|
||||||
&& groupadd -r postgres --gid=999 \
|
&& groupadd -r postgres --gid=999 \
|
||||||
&& useradd -m -r -g postgres --uid=999 postgres \
|
&& useradd -m -r -g postgres --uid=999 postgres \
|
||||||
&& mkdir -p /docker-entrypoint-initdb.d \
|
&& mkdir -p /docker-entrypoint-initdb.d \
|
||||||
@ -10,8 +10,8 @@ RUN tdnf install -y shadow gzip postgresql13 findutils bc >> /dev/null \
|
|||||||
&& chown -R postgres:postgres /run/postgresql \
|
&& chown -R postgres:postgres /run/postgresql \
|
||||||
&& chmod 2777 /run/postgresql \
|
&& chmod 2777 /run/postgresql \
|
||||||
&& mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA" \
|
&& mkdir -p "$PGDATA" && chown -R postgres:postgres "$PGDATA" && chmod 777 "$PGDATA" \
|
||||||
&& sed -i "s|#listen_addresses = 'localhost'.*|listen_addresses = '*'|g" /usr/pgsql/13/share/postgresql/postgresql.conf.sample \
|
&& sed -i "s|#listen_addresses = 'localhost'.*|listen_addresses = '*'|g" /usr/share/postgresql/postgresql.conf.sample \
|
||||||
&& sed -i "s|#unix_socket_directories = '/tmp'.*|unix_socket_directories = '/run/postgresql'|g" /usr/pgsql/13/share/postgresql/postgresql.conf.sample \
|
&& sed -i "s|#unix_socket_directories = '/tmp'.*|unix_socket_directories = '/run/postgresql'|g" /usr/share/postgresql/postgresql.conf.sample \
|
||||||
&& tdnf clean all
|
&& tdnf clean all
|
||||||
|
|
||||||
RUN tdnf erase -y toybox && tdnf install -y util-linux net-tools
|
RUN tdnf erase -y toybox && tdnf install -y util-linux net-tools
|
||||||
|
@ -14,7 +14,7 @@ PGDATANEW=${PGDATA}/pg${PG_VERSION_NEW}
|
|||||||
|
|
||||||
# We should block the upgrade path from 9.6 directly.
|
# We should block the upgrade path from 9.6 directly.
|
||||||
if [ -s $PGDATA/PG_VERSION ]; then
|
if [ -s $PGDATA/PG_VERSION ]; then
|
||||||
echo "Upgrading from PostgreSQL 9.6 to PostgreSQL $PG_VERSION_NEW is not supported in the current Harbor release."
|
echo "Upgrading from PostgreSQL 9.6 to PostgreSQL $PG_VERSION_NEW is not supported in the current Harbor release."
|
||||||
echo "You should upgrade to previous Harbor firstly, then upgrade to current release."
|
echo "You should upgrade to previous Harbor firstly, then upgrade to current release."
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
@ -56,7 +56,7 @@ if [ ! -s $PGDATANEW/PG_VERSION ]; then
|
|||||||
rm -rf $PGDATAOLD
|
rm -rf $PGDATAOLD
|
||||||
else
|
else
|
||||||
echo "init DB, DB version:$PG_VERSION_NEW"
|
echo "init DB, DB version:$PG_VERSION_NEW"
|
||||||
initPG $PGDATANEW true
|
initPG $PGDATANEW true
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user