Download Latest Version webTareas-v3.0p3.zip (8.7 MB)
Email in envelope

Get an email when there's a new version of webTareas

Home / kubernetes
Name Modified Size InfoDownloads / Week
Parent folder
README.TXT 2026-02-10 2.9 kB
webtareas-2.8to3.0-php8.4-fpm-postgres-vsftpd.yml 2026-02-10 9.3 kB
webtareas-3.0-php8.4-fpm-mysql-vsftpd.yml 2026-02-10 9.3 kB
webtareas-3.0-php8.4-fpm-postgres-vsftpd.yml 2026-02-10 9.0 kB
webtareas-2.8-php7.4-fpm-mysql-vsftpd.yml 2025-02-27 9.3 kB
webtareas-2.8-php7.4-apache-mysql-vsftpd.yml 2025-02-27 9.3 kB
webtareas-2.8-php7.4-apache-postgres-vsftpd.yml 2025-02-27 8.9 kB
webtareas-2.7to2.8-php7.4-fpm-postgres-vsftpd.yml 2025-02-27 11.9 kB
webtareas-2.8-php7.4-fpm-postgres-vsftpd.yml 2025-02-27 8.9 kB
webtareas-2.8-php7.4-fpm-postgres.yml 2024-04-02 4.8 kB
webtareas-2.8-php7.4-apache-postgres.yml 2024-04-02 4.8 kB
webtareas-2.8-php7.4-fpm-mysql.yml 2024-04-02 5.1 kB
webtareas-2.8-php7.4-apache-mysql.yml 2024-04-02 5.1 kB
webtareas-2.7-php7.4-apache-mysql-vsftpd.yml 2024-03-26 9.1 kB
webtareas-2.7-php7.4-apache-mysql.yml 2024-03-26 5.1 kB
webtareas-2.7-php7.4-apache-postgres.yml 2024-03-26 4.8 kB
webtareas-2.7-php7.4-fpm-mysql-vsftpd.yml 2024-03-26 9.1 kB
webtareas-2.7-php7.4-fpm-postgres.yml 2024-03-26 4.8 kB
webtareas-2.7-php7.4-apache-postgres-vsftpd.yml 2024-03-26 8.7 kB
webtareas-2.7-php7.4-fpm-mysql.yml 2024-03-26 5.1 kB
webtareas-2.6to2.7-php7.4-fpm-postgres-vsftpd.yml 2024-03-25 11.7 kB
webtareas-2.7-php7.4-fpm-postgres-vsftpd.yml 2024-03-25 8.7 kB
webtareas-2.6-php7.4-apache-postgres-vsftpd.yml 2024-03-11 8.7 kB
webtareas-2.5to2.6-php7.4-fpm-postgres-vsftpd.yml 2024-03-11 11.7 kB
webtareas-2.6-php7.4-fpm-postgres-vsftpd.yml 2024-03-11 8.7 kB
webtareas-2.5-php7.4-apache-postgres-vsftpd.yml 2024-01-20 8.7 kB
webtareas-2.5-php7.4-fpm-postgres-vsftpd.yml 2024-01-20 8.7 kB
webtareas-2.4p6-php7.4-apache-postgres-vsftpd.yml 2023-06-29 8.7 kB
webtareas-2.4p6-php7.4-fpm-postgres-vsftpd.yml 2023-06-29 8.7 kB
Totals: 29 Items   230.2 kB 9
Quickstart: Kubernetes and webTareas

This quick-start guide demonstrates how to deploy webTareas to Kubernetes. Before starting, make sure you have Kubernetes(https://kubernetes.io/docs/setup/) installed.

1.Download YAML file from the following website:
  http://sourceforge.net/projects/webtareas/files/kubernetes/
  
2.Set ip addres in the YAML file.
  For example, if your kubernetes cluster ip is 192.168.0.1

  $ nano webtareas-3.0-php8.4-fpm-postgres-vsftpd.yml

  Find WT_ROOT: "https://YOUR.IP.HERE:30443" and replace with WT_ROOT: "https://192.168.0.1:30443"

3.Deploy webTareas to Kubernetes.
  For example, if the YAML file is webtareas-3.0-php8.4-fpm-postgres-vsftpd.yml

  $ kubectl apply -f webtareas-3.0-php8.4-fpm-postgres-vsftpd.yml

4.Wait for a few seconds and open your browser.
  For example, if your kubernetes cluster ip is 192.168.0.1

  https://192.168.0.1:30443

5.Input username and password and login.
  The default username/password is admin/admin

Enjoy :)

If your Pod is stuck in the Pending state, most probably your cluster does not have a Physical Volume Provisioner. This can be verified as the following:
kubectl get pvc,pod -n webtareas

In this case, and if this is not a production environment, you might want to install the Local Path Provisioner(https://github.com/rancher/local-path-provisioner)
kubectl apply -f https://raw.githubusercontent.com/rancher/local-path-provisioner/master/deploy/local-path-storage.yaml
kubectl annotate storageclass local-path storageclass.kubernetes.io/is-default-class=true

===================================================================================================

The following guide demonstrates how to upgrade webTareas to Kubernetes. Before starting, make sure you have
webtareas-2.8-php7.4-fpm-postgres-vsftpd.yml deployed to Kubernetes.

1.Login the original website and turn it off
  For example, if your kubernetes cluster ip is 192.168.0.1

  Open http://192.168.0.1/general/login.php in your browser and login as admin
  Goto http://192.168.0.1/administration/updatesettings.php
  Make sure 'Turn your site off ?' is 'Yes'
  Click 'Save' button and logout

2.Download `webtareas-2.8to3.0-php8.4-fpm-postgres-vsftpd.yml` YAML file from the following website:
  http://sourceforge.net/projects/webtareas/files/kubernetes/

3.Set ip addres in the YAML file.
  For example, if your kubernetes cluster ip is 192.168.0.1

  $ nano webtareas-3.0-php8.4-fpm-postgres-vsftpd.yml

  Find WT_ROOT: "https://YOUR.IP.HERE:30443" and replace with WT_ROOT: "https://192.168.0.1:30443"

4.Apply this configuration.

  $ kubectl apply -f webtareas-2.8to3.0-php8.4-fpm-postgres-vsftpd.yml

5.Check if the new website deployment is ready.

  $ kubectl get deployment -n webtareas -w

6.Open your browser and enjoy:)
Source: README.TXT, updated 2026-02-10