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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: devops33
3
- Version: 0.8.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.8.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
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "devops33"
7
- version = "0.8.0"
7
+ version = "0.9.0"
8
8
  authors = [
9
9
  { name="DevOps Assistant", email="assistant@example.com" },
10
10
  ]
File without changes
File without changes
File without changes
File without changes
File without changes