devops33 0.8.0__tar.gz → 0.9.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {devops33-0.8.0 → devops33-0.9.0}/PKG-INFO +1 -1
- {devops33-0.8.0 → devops33-0.9.0}/devops/main.py +17 -0
- {devops33-0.8.0 → devops33-0.9.0}/devops33.egg-info/PKG-INFO +1 -1
- {devops33-0.8.0 → devops33-0.9.0}/pyproject.toml +1 -1
- {devops33-0.8.0 → devops33-0.9.0}/LICENSE +0 -0
- {devops33-0.8.0 → devops33-0.9.0}/README.md +0 -0
- {devops33-0.8.0 → devops33-0.9.0}/devops/__init__.py +0 -0
- {devops33-0.8.0 → devops33-0.9.0}/devops/__main__.py +0 -0
- {devops33-0.8.0 → devops33-0.9.0}/devops33.egg-info/SOURCES.txt +0 -0
- {devops33-0.8.0 → devops33-0.9.0}/devops33.egg-info/dependency_links.txt +0 -0
- {devops33-0.8.0 → devops33-0.9.0}/devops33.egg-info/entry_points.txt +0 -0
- {devops33-0.8.0 → devops33-0.9.0}/devops33.egg-info/top_level.txt +0 -0
- {devops33-0.8.0 → devops33-0.9.0}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: devops33
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.9.0
|
|
4
4
|
Summary: An interactive CLI tool for learning Docker, Git, Prometheus, and Kubernetes commands.
|
|
5
5
|
Author-email: DevOps Assistant <assistant@example.com>
|
|
6
6
|
Project-URL: Homepage, https://github.com/example/devops-lab-assistant
|
|
@@ -639,6 +639,23 @@ services:
|
|
|
639
639
|
|
|
640
640
|
ports:
|
|
641
641
|
- "3000:3000"
|
|
642
|
+
nginx:
|
|
643
|
+
image: nginx
|
|
644
|
+
container_name: nginx
|
|
645
|
+
ports:
|
|
646
|
+
- "80:80"
|
|
647
|
+
volumes:
|
|
648
|
+
- ./nginx.conf:/etc/nginx/nginx.conf
|
|
649
|
+
|
|
650
|
+
nginx-exporter:
|
|
651
|
+
image: nginx/nginx-prometheus-exporter
|
|
652
|
+
container_name: nginx-exporter
|
|
653
|
+
command:
|
|
654
|
+
- -nginx.scrape-uri=http://nginx/nginx_status
|
|
655
|
+
ports:
|
|
656
|
+
- "9113:9113";
|
|
657
|
+
depends_on:
|
|
658
|
+
- nginx
|
|
642
659
|
|
|
643
660
|
# =========================================================
|
|
644
661
|
# STEP 10 — SAVE FILE
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: devops33
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.9.0
|
|
4
4
|
Summary: An interactive CLI tool for learning Docker, Git, Prometheus, and Kubernetes commands.
|
|
5
5
|
Author-email: DevOps Assistant <assistant@example.com>
|
|
6
6
|
Project-URL: Homepage, https://github.com/example/devops-lab-assistant
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|