├── .gitignore ├── 2.3 ├── Dockerfile ├── config-itop.php └── php.ini ├── 2.4 ├── Dockerfile ├── config-itop.php └── php.ini ├── 2.5 ├── Dockerfile ├── config-itop.php └── php.ini ├── 2.6 ├── Dockerfile ├── config-itop.php └── php.ini ├── 2.7 ├── Dockerfile ├── Makefile ├── config-itop.php └── php.ini ├── 3.0 ├── Dockerfile ├── Makefile ├── config-itop.php ├── docker-itop-entrypoint └── php.ini ├── 3.1 ├── Dockerfile ├── Makefile ├── config-itop.php ├── docker-itop-entrypoint └── php.ini ├── 3.2 ├── Dockerfile ├── Makefile ├── config-itop.php ├── docker-itop-entrypoint └── php.ini ├── Essential ├── Dockerfile ├── Makefile ├── docker-itop-entrypoint └── php.ini ├── Professional ├── Dockerfile ├── Makefile ├── docker-itop-entrypoint └── php.ini ├── README.md ├── TeemIp ├── Dockerfile ├── Makefile ├── config-itop.php ├── docker-itop-entrypoint └── php.ini └── helm-chart ├── Chart.yaml ├── README.md ├── templates ├── NOTES.txt ├── _helpers.tpl ├── deployment.yaml ├── hpa.yaml ├── ingress.yaml ├── pvc.yaml ├── service.yaml ├── serviceaccount.yaml └── tests │ └── test-connection.yaml └── values.yaml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Super-Visions/docker-itop/HEAD/.gitignore -------------------------------------------------------------------------------- /2.3/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Super-Visions/docker-itop/HEAD/2.3/Dockerfile -------------------------------------------------------------------------------- /2.3/config-itop.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Super-Visions/docker-itop/HEAD/2.3/config-itop.php -------------------------------------------------------------------------------- /2.3/php.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Super-Visions/docker-itop/HEAD/2.3/php.ini -------------------------------------------------------------------------------- /2.4/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Super-Visions/docker-itop/HEAD/2.4/Dockerfile -------------------------------------------------------------------------------- /2.4/config-itop.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Super-Visions/docker-itop/HEAD/2.4/config-itop.php -------------------------------------------------------------------------------- /2.4/php.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Super-Visions/docker-itop/HEAD/2.4/php.ini -------------------------------------------------------------------------------- /2.5/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Super-Visions/docker-itop/HEAD/2.5/Dockerfile -------------------------------------------------------------------------------- /2.5/config-itop.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Super-Visions/docker-itop/HEAD/2.5/config-itop.php -------------------------------------------------------------------------------- /2.5/php.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Super-Visions/docker-itop/HEAD/2.5/php.ini -------------------------------------------------------------------------------- /2.6/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Super-Visions/docker-itop/HEAD/2.6/Dockerfile -------------------------------------------------------------------------------- /2.6/config-itop.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Super-Visions/docker-itop/HEAD/2.6/config-itop.php -------------------------------------------------------------------------------- /2.6/php.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Super-Visions/docker-itop/HEAD/2.6/php.ini -------------------------------------------------------------------------------- /2.7/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Super-Visions/docker-itop/HEAD/2.7/Dockerfile -------------------------------------------------------------------------------- /2.7/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Super-Visions/docker-itop/HEAD/2.7/Makefile -------------------------------------------------------------------------------- /2.7/config-itop.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Super-Visions/docker-itop/HEAD/2.7/config-itop.php -------------------------------------------------------------------------------- /2.7/php.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Super-Visions/docker-itop/HEAD/2.7/php.ini -------------------------------------------------------------------------------- /3.0/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Super-Visions/docker-itop/HEAD/3.0/Dockerfile -------------------------------------------------------------------------------- /3.0/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Super-Visions/docker-itop/HEAD/3.0/Makefile -------------------------------------------------------------------------------- /3.0/config-itop.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Super-Visions/docker-itop/HEAD/3.0/config-itop.php -------------------------------------------------------------------------------- /3.0/docker-itop-entrypoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Super-Visions/docker-itop/HEAD/3.0/docker-itop-entrypoint -------------------------------------------------------------------------------- /3.0/php.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Super-Visions/docker-itop/HEAD/3.0/php.ini -------------------------------------------------------------------------------- /3.1/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Super-Visions/docker-itop/HEAD/3.1/Dockerfile -------------------------------------------------------------------------------- /3.1/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Super-Visions/docker-itop/HEAD/3.1/Makefile -------------------------------------------------------------------------------- /3.1/config-itop.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Super-Visions/docker-itop/HEAD/3.1/config-itop.php -------------------------------------------------------------------------------- /3.1/docker-itop-entrypoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Super-Visions/docker-itop/HEAD/3.1/docker-itop-entrypoint -------------------------------------------------------------------------------- /3.1/php.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Super-Visions/docker-itop/HEAD/3.1/php.ini -------------------------------------------------------------------------------- /3.2/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Super-Visions/docker-itop/HEAD/3.2/Dockerfile -------------------------------------------------------------------------------- /3.2/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Super-Visions/docker-itop/HEAD/3.2/Makefile -------------------------------------------------------------------------------- /3.2/config-itop.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Super-Visions/docker-itop/HEAD/3.2/config-itop.php -------------------------------------------------------------------------------- /3.2/docker-itop-entrypoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Super-Visions/docker-itop/HEAD/3.2/docker-itop-entrypoint -------------------------------------------------------------------------------- /3.2/php.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Super-Visions/docker-itop/HEAD/3.2/php.ini -------------------------------------------------------------------------------- /Essential/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Super-Visions/docker-itop/HEAD/Essential/Dockerfile -------------------------------------------------------------------------------- /Essential/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Super-Visions/docker-itop/HEAD/Essential/Makefile -------------------------------------------------------------------------------- /Essential/docker-itop-entrypoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Super-Visions/docker-itop/HEAD/Essential/docker-itop-entrypoint -------------------------------------------------------------------------------- /Essential/php.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Super-Visions/docker-itop/HEAD/Essential/php.ini -------------------------------------------------------------------------------- /Professional/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Super-Visions/docker-itop/HEAD/Professional/Dockerfile -------------------------------------------------------------------------------- /Professional/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Super-Visions/docker-itop/HEAD/Professional/Makefile -------------------------------------------------------------------------------- /Professional/docker-itop-entrypoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Super-Visions/docker-itop/HEAD/Professional/docker-itop-entrypoint -------------------------------------------------------------------------------- /Professional/php.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Super-Visions/docker-itop/HEAD/Professional/php.ini -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Super-Visions/docker-itop/HEAD/README.md -------------------------------------------------------------------------------- /TeemIp/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Super-Visions/docker-itop/HEAD/TeemIp/Dockerfile -------------------------------------------------------------------------------- /TeemIp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Super-Visions/docker-itop/HEAD/TeemIp/Makefile -------------------------------------------------------------------------------- /TeemIp/config-itop.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Super-Visions/docker-itop/HEAD/TeemIp/config-itop.php -------------------------------------------------------------------------------- /TeemIp/docker-itop-entrypoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Super-Visions/docker-itop/HEAD/TeemIp/docker-itop-entrypoint -------------------------------------------------------------------------------- /TeemIp/php.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Super-Visions/docker-itop/HEAD/TeemIp/php.ini -------------------------------------------------------------------------------- /helm-chart/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Super-Visions/docker-itop/HEAD/helm-chart/Chart.yaml -------------------------------------------------------------------------------- /helm-chart/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Super-Visions/docker-itop/HEAD/helm-chart/README.md -------------------------------------------------------------------------------- /helm-chart/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Super-Visions/docker-itop/HEAD/helm-chart/templates/NOTES.txt -------------------------------------------------------------------------------- /helm-chart/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Super-Visions/docker-itop/HEAD/helm-chart/templates/_helpers.tpl -------------------------------------------------------------------------------- /helm-chart/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Super-Visions/docker-itop/HEAD/helm-chart/templates/deployment.yaml -------------------------------------------------------------------------------- /helm-chart/templates/hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Super-Visions/docker-itop/HEAD/helm-chart/templates/hpa.yaml -------------------------------------------------------------------------------- /helm-chart/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Super-Visions/docker-itop/HEAD/helm-chart/templates/ingress.yaml -------------------------------------------------------------------------------- /helm-chart/templates/pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Super-Visions/docker-itop/HEAD/helm-chart/templates/pvc.yaml -------------------------------------------------------------------------------- /helm-chart/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Super-Visions/docker-itop/HEAD/helm-chart/templates/service.yaml -------------------------------------------------------------------------------- /helm-chart/templates/serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Super-Visions/docker-itop/HEAD/helm-chart/templates/serviceaccount.yaml -------------------------------------------------------------------------------- /helm-chart/templates/tests/test-connection.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Super-Visions/docker-itop/HEAD/helm-chart/templates/tests/test-connection.yaml -------------------------------------------------------------------------------- /helm-chart/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Super-Visions/docker-itop/HEAD/helm-chart/values.yaml --------------------------------------------------------------------------------