Skip to content

Commit 662929b

Browse files
committed
fix: Add task config for all resource types
adjusted as per comments
1 parent fa1826a commit 662929b

File tree

3 files changed

+39
-12
lines changed

3 files changed

+39
-12
lines changed

04-built-in-resource-types/Deployment/Deployment.nginx-better.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@ spec:
2828
resources:
2929
limits:
3030
memory: "50Mi"
31-
cpu: "250m"
3231
requests:
3332
memory: "50Mi"
3433
cpu: "250m"

04-built-in-resource-types/Pod/Pod.nginx-better.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ spec:
1818
resources:
1919
limits:
2020
memory: "50Mi"
21-
cpu: "500m"
2221
requests:
2322
memory: "25Mi"
2423
cpu: "250m"

Taskfile.yaml

Lines changed: 39 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -4,19 +4,48 @@ includes:
44
01_setup:
55
dir: ./03-installation-and-setup
66
taskfile: ./03-installation-and-setup/Taskfile.yaml
7-
02_deployment:
8-
dir: ./04-built-in-resource-types/Deployment
9-
taskfile: ./04-built-in-resource-types/Deployment/Taskfile.yaml
10-
03_service:
7+
02_namespace:
8+
dir: ./04-built-in-resource-types/Namespace
9+
taskfile: ./04-built-in-resource-types/Namespace/Taskfile.yaml
10+
03_pod:
11+
dir: ./04-built-in-resource-types/Pod
12+
taskfile: ./04-built-in-resource-types/Pod/Taskfile.yaml
13+
04_service:
1114
dir: ./04-built-in-resource-types/Service
1215
taskfile: ./04-built-in-resource-types/Service/Taskfile.yaml
13-
04_job:
16+
05_deployment:
17+
dir: ./04-built-in-resource-types/Deployment
18+
taskfile: ./04-built-in-resource-types/Deployment/Taskfile.yaml
19+
06_replica_set:
20+
dir: ./04-built-in-resource-types/ReplicaSet
21+
taskfile: ./04-built-in-resource-types/ReplicaSet/Taskfile.yaml
22+
07_job:
1423
dir: ./04-built-in-resource-types/Job
1524
taskfile: ./04-built-in-resource-types/Job/Taskfile.yaml
16-
05_config_map:
25+
08_cron_job:
26+
dir: ./04-built-in-resource-types/CronJob
27+
taskfile: ./04-built-in-resource-types/CronJob/Taskfile.yaml
28+
09_config_map:
1729
dir: ./04-built-in-resource-types/ConfigMap
1830
taskfile: ./04-built-in-resource-types/ConfigMap/Taskfile.yaml
19-
20-
21-
22-
31+
10_secret:
32+
dir: ./04-built-in-resource-types/Secret
33+
taskfile: ./04-built-in-resource-types/Secret/Taskfile.yaml
34+
11_demon_set:
35+
dir: ./04-built-in-resource-types/DaemonSet
36+
taskfile: ./04-built-in-resource-types/DaemonSet/Taskfile.yaml
37+
12_ingress:
38+
dir: ./04-built-in-resource-types/Ingress
39+
taskfile: ./04-built-in-resource-types/Ingress/Taskfile.yaml
40+
13_gateway_api:
41+
dir: ./04-built-in-resource-types/GatewayAPI
42+
taskfile: ./04-built-in-resource-types/GatewayAPI/Taskfile.yaml
43+
14_persistent_volume:
44+
dir: ./04-built-in-resource-types/PersistentVolume
45+
taskfile: ./04-built-in-resource-types/PersistentVolume/Taskfile.yaml
46+
15_stateful_set:
47+
dir: ./04-built-in-resource-types/StatefulSet
48+
taskfile: ./04-built-in-resource-types/StatefulSet/Taskfile.yaml
49+
16_rbac:
50+
dir: ./04-built-in-resource-types/RBAC
51+
taskfile: ./04-built-in-resource-types/RBAC/Taskfile.yaml

0 commit comments

Comments
 (0)