fix(nextcloud): #35 Convert from docker to k3s
This commit is contained in:
		
							parent
							
								
									6b4daed099
								
							
						
					
					
						commit
						0acdced260
					
				
					 1 changed files with 8 additions and 6 deletions
				
			
		|  | @ -39,12 +39,14 @@ else | ||||||
|     destination="${1}" |     destination="${1}" | ||||||
| fi | fi | ||||||
| 
 | 
 | ||||||
|  | namespace="ix-nextcloud-2" | ||||||
|  | 
 | ||||||
| # Filename for database backup | # Filename for database backup | ||||||
| database_backupfile="nextcloud-sqlbkp_$(date +'%Y%m%d').bak" | database_backupfile="nextcloud-sqlbkp_$(date +'%Y%m%d').bak" | ||||||
| 
 | 
 | ||||||
| # Retrieve container names | # Retrieve container names | ||||||
| base_container="$( docker ps --format '{{.Names}}' | grep -E 'nextcloud-2_nextcloud-2-[0-9a-z]{10}-[0-9a-z]{5}' )" | base_container="$( k3s kubectl get pods --namespace "${namespace}" | cut -f1 -d' ' | grep -E 'nextcloud-2-[0-9a-z]{10}-[0-9a-z]{5}' )" | ||||||
| database_container="$( docker ps --format '{{.Names}}' | grep postgres_nextcloud-2-cnpg-main-1 )" | database_container="$( k3s kubectl get pods --namespace "${namespace}" | cut -f1 -d' ' | grep 'cnpg-main' )" | ||||||
| 
 | 
 | ||||||
| if ! [[ -n "${base_container}" && -n "${database_container}" ]]; then | if ! [[ -n "${base_container}" && -n "${database_container}" ]]; then | ||||||
|     >&2 printf "Error: Not all containers could be found.\n" |     >&2 printf "Error: Not all containers could be found.\n" | ||||||
|  | @ -55,21 +57,21 @@ fi | ||||||
| set -e | set -e | ||||||
| 
 | 
 | ||||||
| # Turn on maintenance mode | # Turn on maintenance mode | ||||||
| docker exec "${base_container}" php occ maintenance:mode --on | k3s kubectl exec "${base_container}" --namespace "${namespace}" -- php occ maintenance:mode --on | ||||||
| 
 | 
 | ||||||
| # Database backup | # Database backup | ||||||
| echo 'Backing up database' | echo 'Backing up database' | ||||||
| host_database_backupfile="${destination}/${database_backupfile}" | host_database_backupfile="${destination}/${database_backupfile}" | ||||||
| docker exec --env-file "${env_file:=.env}" "${database_container}" pg_dump 'nextcloud' -cwv -h 'localhost' -U 'nextcloud' > "${host_database_backupfile}" | k3s kubectl exec "${database_container}" --namespace "${namespace}" -- env $(cat "${env_file:=.env}" | xargs) pg_dump 'nextcloud' -cwv -h 'localhost' -U 'nextcloud' > "${host_database_backupfile}" | ||||||
| 
 | 
 | ||||||
| # Files backup | # Files backup | ||||||
| for file in 'config' 'themes'; do | for file in 'config' 'themes'; do | ||||||
|     printf "Copying %s\n" "${file}" |     printf "Copying %s\n" "${file}" | ||||||
|     docker cp -a "${base_container}":"/var/www/html/${file}" "${destination}" |     k3s kubectl cp "${base_container}":"/var/www/html/${file}" "${destination}" | ||||||
| done | done | ||||||
| 
 | 
 | ||||||
| # Turn off maintenance mode | # Turn off maintenance mode | ||||||
| docker exec "${base_container}" php occ maintenance:mode --off | k3s kubectl exec "${base_container}" --namespace "${namespace}" -- php occ maintenance:mode --off | ||||||
| 
 | 
 | ||||||
| # Backup cleanup | # Backup cleanup | ||||||
| # Only keep 30 days of backups | # Only keep 30 days of backups | ||||||
|  |  | ||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue