Download Latest Version webTareas-v2.8p5.zip (9.0 MB)
Email in envelope

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

Home / kubernetes
Name Modified Size InfoDownloads / Week
Parent folder
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
README.TXT 2024-04-02 2.3 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: 26 Items   202.0 kB 0
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-2.8-php7.4-fpm-postgres-vsftpd.yml

  Find WT_ROOT: "http://YOUR.IP.HERE:30080" and replace with WT_ROOT: "http://192.168.0.1:30080"

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

  $ kubectl apply -f webtareas-2.8-php7.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

  http://192.168.0.1:30080

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.7-php7.4-fpm-postgres-vsftpd.yml deployed to Kubernetes.

1.Download `webtareas-2.7to2.8-php7.4-fpm-postgres-vsftpd.yml` YAML file from the following website:
  http://sourceforge.net/projects/webtareas/files/kubernetes/
  
2.Apply this configuration.

  $ kubectl apply -f webtareas-2.7to2.8-php7.4-fpm-postgres-vsftpd.yml

3.Check if the new website deployment is ready.

  $ kubectl get deployment -n webtareas -w

4.Open your browser and enjoy:)
Source: README.TXT, updated 2024-04-02