├── .gitignore ├── LICENSE ├── README.md ├── _course_files ├── Intel_AMD_Edition │ ├── Chapter 10 Networking │ │ ├── networking-tests.yaml │ │ ├── pods.yaml │ │ └── services.yaml │ ├── Chapter 11 Microservices │ │ ├── services.yaml │ │ └── workloads.yaml │ ├── Chapter 12 Persistence │ │ ├── mongo-stack.yaml │ │ ├── services.yaml │ │ ├── storage.yaml │ │ └── workloads.yaml │ ├── Chapter 13 AWS │ │ ├── ebs-csi-driver-install │ │ │ ├── install-ebs-driver.sh │ │ │ └── policy.json.template │ │ ├── install kops.txt │ │ ├── install-eks.txt │ │ ├── mongo-stack.yaml │ │ ├── services.yaml │ │ ├── storage-aws.yaml │ │ └── workloads.yaml │ ├── Chapter 15 ELK │ │ ├── elastic-stack.yaml │ │ └── fluentd-config.yaml │ ├── Chapter 16 Monitoring │ │ ├── README-difference-between-yaml-files.txt │ │ ├── crds.yaml │ │ ├── eks-monitoring.yaml │ │ ├── kops-monitoring.yaml │ │ └── raw_data │ │ │ ├── eks-values.yaml │ │ │ ├── kops-values.yaml │ │ │ └── kube-prometheus-stack │ │ │ ├── .helmignore │ │ │ ├── CONTRIBUTING.md │ │ │ ├── Chart.lock │ │ │ ├── Chart.yaml │ │ │ ├── README.md │ │ │ ├── charts │ │ │ ├── grafana │ │ │ │ ├── .helmignore │ │ │ │ ├── Chart.yaml │ │ │ │ ├── README.md │ │ │ │ ├── ci │ │ │ │ │ ├── default-values.yaml │ │ │ │ │ ├── with-dashboard-json-values.yaml │ │ │ │ │ ├── with-dashboard-values.yaml │ │ │ │ │ └── with-image-renderer-values.yaml │ │ │ │ ├── dashboards │ │ │ │ │ └── custom-dashboard.json │ │ │ │ ├── templates │ │ │ │ │ ├── NOTES.txt │ │ │ │ │ ├── _helpers.tpl │ │ │ │ │ ├── _pod.tpl │ │ │ │ │ ├── clusterrole.yaml │ │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ │ ├── configmap-dashboard-provider.yaml │ │ │ │ │ ├── configmap.yaml │ │ │ │ │ ├── dashboards-json-configmap.yaml │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ ├── headless-service.yaml │ │ │ │ │ ├── hpa.yaml │ │ │ │ │ ├── image-renderer-deployment.yaml │ │ │ │ │ ├── image-renderer-network-policy.yaml │ │ │ │ │ ├── image-renderer-service.yaml │ │ │ │ │ ├── ingress.yaml │ │ │ │ │ ├── poddisruptionbudget.yaml │ │ │ │ │ ├── podsecuritypolicy.yaml │ │ │ │ │ ├── pvc.yaml │ │ │ │ │ ├── role.yaml │ │ │ │ │ ├── rolebinding.yaml │ │ │ │ │ ├── secret-env.yaml │ │ │ │ │ ├── secret.yaml │ │ │ │ │ ├── service.yaml │ │ │ │ │ ├── serviceaccount.yaml │ │ │ │ │ ├── servicemonitor.yaml │ │ │ │ │ ├── statefulset.yaml │ │ │ │ │ └── tests │ │ │ │ │ │ ├── test-configmap.yaml │ │ │ │ │ │ ├── test-podsecuritypolicy.yaml │ │ │ │ │ │ ├── test-role.yaml │ │ │ │ │ │ ├── test-rolebinding.yaml │ │ │ │ │ │ ├── test-serviceaccount.yaml │ │ │ │ │ │ └── test.yaml │ │ │ │ └── values.yaml │ │ │ ├── kube-state-metrics │ │ │ │ ├── .helmignore │ │ │ │ ├── Chart.yaml │ │ │ │ ├── OWNERS │ │ │ │ ├── README.md │ │ │ │ ├── templates │ │ │ │ │ ├── NOTES.txt │ │ │ │ │ ├── _helpers.tpl │ │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ ├── kubeconfig-secret.yaml │ │ │ │ │ ├── pdb.yaml │ │ │ │ │ ├── podsecuritypolicy.yaml │ │ │ │ │ ├── psp-clusterrole.yaml │ │ │ │ │ ├── psp-clusterrolebinding.yaml │ │ │ │ │ ├── role.yaml │ │ │ │ │ ├── rolebinding.yaml │ │ │ │ │ ├── service.yaml │ │ │ │ │ ├── serviceaccount.yaml │ │ │ │ │ ├── servicemonitor.yaml │ │ │ │ │ ├── stsdiscovery-role.yaml │ │ │ │ │ └── stsdiscovery-rolebinding.yaml │ │ │ │ └── values.yaml │ │ │ └── prometheus-node-exporter │ │ │ │ ├── .helmignore │ │ │ │ ├── Chart.yaml │ │ │ │ ├── README.md │ │ │ │ ├── ci │ │ │ │ └── port-values.yaml │ │ │ │ ├── templates │ │ │ │ ├── NOTES.txt │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── daemonset.yaml │ │ │ │ ├── endpoints.yaml │ │ │ │ ├── monitor.yaml │ │ │ │ ├── psp-clusterrole.yaml │ │ │ │ ├── psp-clusterrolebinding.yaml │ │ │ │ ├── psp.yaml │ │ │ │ ├── service.yaml │ │ │ │ └── serviceaccount.yaml │ │ │ │ └── values.yaml │ │ │ ├── crds │ │ │ ├── crd-alertmanagerconfigs.yaml │ │ │ ├── crd-alertmanagers.yaml │ │ │ ├── crd-podmonitors.yaml │ │ │ ├── crd-probes.yaml │ │ │ ├── crd-prometheuses.yaml │ │ │ ├── crd-prometheusrules.yaml │ │ │ ├── crd-servicemonitors.yaml │ │ │ └── crd-thanosrulers.yaml │ │ │ ├── eks-values.yaml │ │ │ ├── kops-values.yaml │ │ │ ├── templates │ │ │ ├── NOTES.txt │ │ │ ├── _helpers.tpl │ │ │ ├── alertmanager │ │ │ │ ├── alertmanager.yaml │ │ │ │ ├── extrasecret.yaml │ │ │ │ ├── ingress.yaml │ │ │ │ ├── ingressperreplica.yaml │ │ │ │ ├── podDisruptionBudget.yaml │ │ │ │ ├── psp-role.yaml │ │ │ │ ├── psp-rolebinding.yaml │ │ │ │ ├── psp.yaml │ │ │ │ ├── secret.yaml │ │ │ │ ├── service.yaml │ │ │ │ ├── serviceaccount.yaml │ │ │ │ ├── servicemonitor.yaml │ │ │ │ └── serviceperreplica.yaml │ │ │ ├── exporters │ │ │ │ ├── core-dns │ │ │ │ │ ├── service.yaml │ │ │ │ │ └── servicemonitor.yaml │ │ │ │ ├── kube-api-server │ │ │ │ │ └── servicemonitor.yaml │ │ │ │ ├── kube-controller-manager │ │ │ │ │ ├── endpoints.yaml │ │ │ │ │ ├── service.yaml │ │ │ │ │ └── servicemonitor.yaml │ │ │ │ ├── kube-dns │ │ │ │ │ ├── service.yaml │ │ │ │ │ └── servicemonitor.yaml │ │ │ │ ├── kube-etcd │ │ │ │ │ ├── endpoints.yaml │ │ │ │ │ ├── service.yaml │ │ │ │ │ └── servicemonitor.yaml │ │ │ │ ├── kube-proxy │ │ │ │ │ ├── endpoints.yaml │ │ │ │ │ ├── service.yaml │ │ │ │ │ └── servicemonitor.yaml │ │ │ │ ├── kube-scheduler │ │ │ │ │ ├── endpoints.yaml │ │ │ │ │ ├── service.yaml │ │ │ │ │ └── servicemonitor.yaml │ │ │ │ ├── kube-state-metrics │ │ │ │ │ └── serviceMonitor.yaml │ │ │ │ ├── kubelet │ │ │ │ │ └── servicemonitor.yaml │ │ │ │ └── node-exporter │ │ │ │ │ └── servicemonitor.yaml │ │ │ ├── grafana │ │ │ │ ├── configmap-dashboards.yaml │ │ │ │ ├── configmaps-datasources.yaml │ │ │ │ ├── dashboards-1.14 │ │ │ │ │ ├── alertmanager-overview.yaml │ │ │ │ │ ├── apiserver.yaml │ │ │ │ │ ├── cluster-total.yaml │ │ │ │ │ ├── controller-manager.yaml │ │ │ │ │ ├── etcd.yaml │ │ │ │ │ ├── k8s-coredns.yaml │ │ │ │ │ ├── k8s-resources-cluster.yaml │ │ │ │ │ ├── k8s-resources-namespace.yaml │ │ │ │ │ ├── k8s-resources-node.yaml │ │ │ │ │ ├── k8s-resources-pod.yaml │ │ │ │ │ ├── k8s-resources-workload.yaml │ │ │ │ │ ├── k8s-resources-workloads-namespace.yaml │ │ │ │ │ ├── kubelet.yaml │ │ │ │ │ ├── namespace-by-pod.yaml │ │ │ │ │ ├── namespace-by-workload.yaml │ │ │ │ │ ├── node-cluster-rsrc-use.yaml │ │ │ │ │ ├── node-rsrc-use.yaml │ │ │ │ │ ├── nodes.yaml │ │ │ │ │ ├── persistentvolumesusage.yaml │ │ │ │ │ ├── pod-total.yaml │ │ │ │ │ ├── prometheus-remote-write.yaml │ │ │ │ │ ├── prometheus.yaml │ │ │ │ │ ├── proxy.yaml │ │ │ │ │ ├── scheduler.yaml │ │ │ │ │ ├── statefulset.yaml │ │ │ │ │ └── workload-total.yaml │ │ │ │ └── servicemonitor.yaml │ │ │ ├── prometheus-operator │ │ │ │ ├── admission-webhooks │ │ │ │ │ ├── job-patch │ │ │ │ │ │ ├── clusterrole.yaml │ │ │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ │ │ ├── job-createSecret.yaml │ │ │ │ │ │ ├── job-patchWebhook.yaml │ │ │ │ │ │ ├── psp.yaml │ │ │ │ │ │ ├── role.yaml │ │ │ │ │ │ ├── rolebinding.yaml │ │ │ │ │ │ └── serviceaccount.yaml │ │ │ │ │ ├── mutatingWebhookConfiguration.yaml │ │ │ │ │ └── validatingWebhookConfiguration.yaml │ │ │ │ ├── certmanager.yaml │ │ │ │ ├── clusterrole.yaml │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ ├── deployment.yaml │ │ │ │ ├── psp-clusterrole.yaml │ │ │ │ ├── psp-clusterrolebinding.yaml │ │ │ │ ├── psp.yaml │ │ │ │ ├── service.yaml │ │ │ │ ├── serviceaccount.yaml │ │ │ │ └── servicemonitor.yaml │ │ │ └── prometheus │ │ │ │ ├── _rules.tpl │ │ │ │ ├── additionalAlertRelabelConfigs.yaml │ │ │ │ ├── additionalAlertmanagerConfigs.yaml │ │ │ │ ├── additionalPrometheusRules.yaml │ │ │ │ ├── additionalScrapeConfigs.yaml │ │ │ │ ├── clusterrole.yaml │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ ├── csi-secret.yaml │ │ │ │ ├── extrasecret.yaml │ │ │ │ ├── ingress.yaml │ │ │ │ ├── ingressThanosSidecar.yaml │ │ │ │ ├── ingressperreplica.yaml │ │ │ │ ├── podDisruptionBudget.yaml │ │ │ │ ├── podmonitors.yaml │ │ │ │ ├── prometheus.yaml │ │ │ │ ├── psp-clusterrole.yaml │ │ │ │ ├── psp-clusterrolebinding.yaml │ │ │ │ ├── psp.yaml │ │ │ │ ├── rules-1.14 │ │ │ │ ├── alertmanager.rules.yaml │ │ │ │ ├── etcd.yaml │ │ │ │ ├── general.rules.yaml │ │ │ │ ├── k8s.rules.yaml │ │ │ │ ├── kube-apiserver-availability.rules.yaml │ │ │ │ ├── kube-apiserver-burnrate.rules.yaml │ │ │ │ ├── kube-apiserver-histogram.rules.yaml │ │ │ │ ├── kube-apiserver-slos.yaml │ │ │ │ ├── kube-apiserver.rules.yaml │ │ │ │ ├── kube-prometheus-general.rules.yaml │ │ │ │ ├── kube-prometheus-node-recording.rules.yaml │ │ │ │ ├── kube-scheduler.rules.yaml │ │ │ │ ├── kube-state-metrics.yaml │ │ │ │ ├── kubelet.rules.yaml │ │ │ │ ├── kubernetes-apps.yaml │ │ │ │ ├── kubernetes-resources.yaml │ │ │ │ ├── kubernetes-storage.yaml │ │ │ │ ├── kubernetes-system-apiserver.yaml │ │ │ │ ├── kubernetes-system-controller-manager.yaml │ │ │ │ ├── kubernetes-system-kubelet.yaml │ │ │ │ ├── kubernetes-system-scheduler.yaml │ │ │ │ ├── kubernetes-system.yaml │ │ │ │ ├── node-exporter.rules.yaml │ │ │ │ ├── node-exporter.yaml │ │ │ │ ├── node-network.yaml │ │ │ │ ├── node.rules.yaml │ │ │ │ ├── prometheus-operator.yaml │ │ │ │ └── prometheus.yaml │ │ │ │ ├── service.yaml │ │ │ │ ├── serviceThanosSidecar.yaml │ │ │ │ ├── serviceThanosSidecarExternal.yaml │ │ │ │ ├── serviceaccount.yaml │ │ │ │ ├── servicemonitor.yaml │ │ │ │ ├── servicemonitorThanosSidecar.yaml │ │ │ │ ├── servicemonitors.yaml │ │ │ │ └── serviceperreplica.yaml │ │ │ └── values.yaml │ ├── Chapter 17 Alerts │ │ ├── alertmanager.yaml │ │ ├── bad-pod.yaml │ │ ├── sample_alertmanager.yaml │ │ └── test slack integration.txt │ ├── Chapter 5 Pods │ │ └── first-pod.yaml │ ├── Chapter 6 Services │ │ ├── first-pod.yaml │ │ └── webapp-service.yaml │ ├── Chapter 7 Exercise │ │ ├── pods.yaml │ │ └── services.yaml │ ├── Chapter 8 ReplicaSets │ │ ├── pods.yaml │ │ └── services.yaml │ ├── Chapter 9 Deployments │ │ ├── pods.yaml │ │ └── services.yaml │ ├── Going Further with Kubernetes │ │ ├── ConfigMaps │ │ │ ├── aws-credentials.yaml │ │ │ └── database-config.yaml │ │ ├── HPA │ │ │ └── autoscale-rules.yaml │ │ ├── Helm │ │ │ └── fleetman-helm-demo-start.yaml │ │ ├── Ingress │ │ │ ├── ingress-public.yaml │ │ │ ├── ingress-secure.yaml │ │ │ └── ingress.yaml │ │ ├── Other Workloads │ │ │ ├── cron.yaml │ │ │ ├── job.yaml │ │ │ ├── mongo-replicated.yaml │ │ │ ├── services.yaml │ │ │ ├── storage.yaml │ │ │ └── workloads.yaml │ │ └── RBAC │ │ │ └── rules-for-new-joiners.yaml │ ├── K8S Command Reference.pdf │ └── metrics-server.yaml ├── MacARM64Edition │ ├── Chapter 10 Networking │ │ ├── networking-tests.yaml │ │ ├── pods.yaml │ │ └── services.yaml │ ├── Chapter 11 Microservices │ │ ├── services.yaml │ │ └── workloads.yaml │ ├── Chapter 12 Persistence │ │ ├── mongo-stack.yaml │ │ ├── services.yaml │ │ ├── storage.yaml │ │ └── workloads.yaml │ ├── Chapter 13 AWS │ │ ├── IMPORTANT_NOTE.txt │ │ ├── install kops.txt │ │ ├── install-eks.txt │ │ ├── mongo-stack.yaml │ │ ├── services.yaml │ │ ├── storage-aws.yaml │ │ └── workloads.yaml │ ├── Chapter 15 ELK │ │ ├── elastic-stack.yaml │ │ └── fluentd-config.yaml │ ├── Chapter 16 Monitoring │ │ ├── README-difference-between-yaml-files.txt │ │ ├── crds.yaml │ │ ├── eks-monitoring.yaml │ │ ├── kops-monitoring.yaml │ │ └── raw_data │ │ │ ├── eks-values.yaml │ │ │ ├── kops-values.yaml │ │ │ └── kube-prometheus-stack │ │ │ ├── .helmignore │ │ │ ├── CONTRIBUTING.md │ │ │ ├── Chart.lock │ │ │ ├── Chart.yaml │ │ │ ├── README.md │ │ │ ├── charts │ │ │ ├── grafana │ │ │ │ ├── .helmignore │ │ │ │ ├── Chart.yaml │ │ │ │ ├── README.md │ │ │ │ ├── ci │ │ │ │ │ ├── default-values.yaml │ │ │ │ │ ├── with-dashboard-json-values.yaml │ │ │ │ │ ├── with-dashboard-values.yaml │ │ │ │ │ └── with-image-renderer-values.yaml │ │ │ │ ├── dashboards │ │ │ │ │ └── custom-dashboard.json │ │ │ │ ├── templates │ │ │ │ │ ├── NOTES.txt │ │ │ │ │ ├── _helpers.tpl │ │ │ │ │ ├── _pod.tpl │ │ │ │ │ ├── clusterrole.yaml │ │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ │ ├── configmap-dashboard-provider.yaml │ │ │ │ │ ├── configmap.yaml │ │ │ │ │ ├── dashboards-json-configmap.yaml │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ ├── headless-service.yaml │ │ │ │ │ ├── hpa.yaml │ │ │ │ │ ├── image-renderer-deployment.yaml │ │ │ │ │ ├── image-renderer-network-policy.yaml │ │ │ │ │ ├── image-renderer-service.yaml │ │ │ │ │ ├── ingress.yaml │ │ │ │ │ ├── poddisruptionbudget.yaml │ │ │ │ │ ├── podsecuritypolicy.yaml │ │ │ │ │ ├── pvc.yaml │ │ │ │ │ ├── role.yaml │ │ │ │ │ ├── rolebinding.yaml │ │ │ │ │ ├── secret-env.yaml │ │ │ │ │ ├── secret.yaml │ │ │ │ │ ├── service.yaml │ │ │ │ │ ├── serviceaccount.yaml │ │ │ │ │ ├── servicemonitor.yaml │ │ │ │ │ ├── statefulset.yaml │ │ │ │ │ └── tests │ │ │ │ │ │ ├── test-configmap.yaml │ │ │ │ │ │ ├── test-podsecuritypolicy.yaml │ │ │ │ │ │ ├── test-role.yaml │ │ │ │ │ │ ├── test-rolebinding.yaml │ │ │ │ │ │ ├── test-serviceaccount.yaml │ │ │ │ │ │ └── test.yaml │ │ │ │ └── values.yaml │ │ │ ├── kube-state-metrics │ │ │ │ ├── .helmignore │ │ │ │ ├── Chart.yaml │ │ │ │ ├── OWNERS │ │ │ │ ├── README.md │ │ │ │ ├── templates │ │ │ │ │ ├── NOTES.txt │ │ │ │ │ ├── _helpers.tpl │ │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ │ ├── deployment.yaml │ │ │ │ │ ├── kubeconfig-secret.yaml │ │ │ │ │ ├── pdb.yaml │ │ │ │ │ ├── podsecuritypolicy.yaml │ │ │ │ │ ├── psp-clusterrole.yaml │ │ │ │ │ ├── psp-clusterrolebinding.yaml │ │ │ │ │ ├── role.yaml │ │ │ │ │ ├── rolebinding.yaml │ │ │ │ │ ├── service.yaml │ │ │ │ │ ├── serviceaccount.yaml │ │ │ │ │ ├── servicemonitor.yaml │ │ │ │ │ ├── stsdiscovery-role.yaml │ │ │ │ │ └── stsdiscovery-rolebinding.yaml │ │ │ │ └── values.yaml │ │ │ └── prometheus-node-exporter │ │ │ │ ├── .helmignore │ │ │ │ ├── Chart.yaml │ │ │ │ ├── README.md │ │ │ │ ├── ci │ │ │ │ └── port-values.yaml │ │ │ │ ├── templates │ │ │ │ ├── NOTES.txt │ │ │ │ ├── _helpers.tpl │ │ │ │ ├── daemonset.yaml │ │ │ │ ├── endpoints.yaml │ │ │ │ ├── monitor.yaml │ │ │ │ ├── psp-clusterrole.yaml │ │ │ │ ├── psp-clusterrolebinding.yaml │ │ │ │ ├── psp.yaml │ │ │ │ ├── service.yaml │ │ │ │ └── serviceaccount.yaml │ │ │ │ └── values.yaml │ │ │ ├── crds │ │ │ ├── crd-alertmanagerconfigs.yaml │ │ │ ├── crd-alertmanagers.yaml │ │ │ ├── crd-podmonitors.yaml │ │ │ ├── crd-probes.yaml │ │ │ ├── crd-prometheuses.yaml │ │ │ ├── crd-prometheusrules.yaml │ │ │ ├── crd-servicemonitors.yaml │ │ │ └── crd-thanosrulers.yaml │ │ │ ├── eks-values.yaml │ │ │ ├── kops-values.yaml │ │ │ ├── templates │ │ │ ├── NOTES.txt │ │ │ ├── _helpers.tpl │ │ │ ├── alertmanager │ │ │ │ ├── alertmanager.yaml │ │ │ │ ├── extrasecret.yaml │ │ │ │ ├── ingress.yaml │ │ │ │ ├── ingressperreplica.yaml │ │ │ │ ├── podDisruptionBudget.yaml │ │ │ │ ├── psp-role.yaml │ │ │ │ ├── psp-rolebinding.yaml │ │ │ │ ├── psp.yaml │ │ │ │ ├── secret.yaml │ │ │ │ ├── service.yaml │ │ │ │ ├── serviceaccount.yaml │ │ │ │ ├── servicemonitor.yaml │ │ │ │ └── serviceperreplica.yaml │ │ │ ├── exporters │ │ │ │ ├── core-dns │ │ │ │ │ ├── service.yaml │ │ │ │ │ └── servicemonitor.yaml │ │ │ │ ├── kube-api-server │ │ │ │ │ └── servicemonitor.yaml │ │ │ │ ├── kube-controller-manager │ │ │ │ │ ├── endpoints.yaml │ │ │ │ │ ├── service.yaml │ │ │ │ │ └── servicemonitor.yaml │ │ │ │ ├── kube-dns │ │ │ │ │ ├── service.yaml │ │ │ │ │ └── servicemonitor.yaml │ │ │ │ ├── kube-etcd │ │ │ │ │ ├── endpoints.yaml │ │ │ │ │ ├── service.yaml │ │ │ │ │ └── servicemonitor.yaml │ │ │ │ ├── kube-proxy │ │ │ │ │ ├── endpoints.yaml │ │ │ │ │ ├── service.yaml │ │ │ │ │ └── servicemonitor.yaml │ │ │ │ ├── kube-scheduler │ │ │ │ │ ├── endpoints.yaml │ │ │ │ │ ├── service.yaml │ │ │ │ │ └── servicemonitor.yaml │ │ │ │ ├── kube-state-metrics │ │ │ │ │ └── serviceMonitor.yaml │ │ │ │ ├── kubelet │ │ │ │ │ └── servicemonitor.yaml │ │ │ │ └── node-exporter │ │ │ │ │ └── servicemonitor.yaml │ │ │ ├── grafana │ │ │ │ ├── configmap-dashboards.yaml │ │ │ │ ├── configmaps-datasources.yaml │ │ │ │ ├── dashboards-1.14 │ │ │ │ │ ├── alertmanager-overview.yaml │ │ │ │ │ ├── apiserver.yaml │ │ │ │ │ ├── cluster-total.yaml │ │ │ │ │ ├── controller-manager.yaml │ │ │ │ │ ├── etcd.yaml │ │ │ │ │ ├── k8s-coredns.yaml │ │ │ │ │ ├── k8s-resources-cluster.yaml │ │ │ │ │ ├── k8s-resources-namespace.yaml │ │ │ │ │ ├── k8s-resources-node.yaml │ │ │ │ │ ├── k8s-resources-pod.yaml │ │ │ │ │ ├── k8s-resources-workload.yaml │ │ │ │ │ ├── k8s-resources-workloads-namespace.yaml │ │ │ │ │ ├── kubelet.yaml │ │ │ │ │ ├── namespace-by-pod.yaml │ │ │ │ │ ├── namespace-by-workload.yaml │ │ │ │ │ ├── node-cluster-rsrc-use.yaml │ │ │ │ │ ├── node-rsrc-use.yaml │ │ │ │ │ ├── nodes.yaml │ │ │ │ │ ├── persistentvolumesusage.yaml │ │ │ │ │ ├── pod-total.yaml │ │ │ │ │ ├── prometheus-remote-write.yaml │ │ │ │ │ ├── prometheus.yaml │ │ │ │ │ ├── proxy.yaml │ │ │ │ │ ├── scheduler.yaml │ │ │ │ │ ├── statefulset.yaml │ │ │ │ │ └── workload-total.yaml │ │ │ │ └── servicemonitor.yaml │ │ │ ├── prometheus-operator │ │ │ │ ├── admission-webhooks │ │ │ │ │ ├── job-patch │ │ │ │ │ │ ├── clusterrole.yaml │ │ │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ │ │ ├── job-createSecret.yaml │ │ │ │ │ │ ├── job-patchWebhook.yaml │ │ │ │ │ │ ├── psp.yaml │ │ │ │ │ │ ├── role.yaml │ │ │ │ │ │ ├── rolebinding.yaml │ │ │ │ │ │ └── serviceaccount.yaml │ │ │ │ │ ├── mutatingWebhookConfiguration.yaml │ │ │ │ │ └── validatingWebhookConfiguration.yaml │ │ │ │ ├── certmanager.yaml │ │ │ │ ├── clusterrole.yaml │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ ├── deployment.yaml │ │ │ │ ├── psp-clusterrole.yaml │ │ │ │ ├── psp-clusterrolebinding.yaml │ │ │ │ ├── psp.yaml │ │ │ │ ├── service.yaml │ │ │ │ ├── serviceaccount.yaml │ │ │ │ └── servicemonitor.yaml │ │ │ └── prometheus │ │ │ │ ├── _rules.tpl │ │ │ │ ├── additionalAlertRelabelConfigs.yaml │ │ │ │ ├── additionalAlertmanagerConfigs.yaml │ │ │ │ ├── additionalPrometheusRules.yaml │ │ │ │ ├── additionalScrapeConfigs.yaml │ │ │ │ ├── clusterrole.yaml │ │ │ │ ├── clusterrolebinding.yaml │ │ │ │ ├── csi-secret.yaml │ │ │ │ ├── extrasecret.yaml │ │ │ │ ├── ingress.yaml │ │ │ │ ├── ingressThanosSidecar.yaml │ │ │ │ ├── ingressperreplica.yaml │ │ │ │ ├── podDisruptionBudget.yaml │ │ │ │ ├── podmonitors.yaml │ │ │ │ ├── prometheus.yaml │ │ │ │ ├── psp-clusterrole.yaml │ │ │ │ ├── psp-clusterrolebinding.yaml │ │ │ │ ├── psp.yaml │ │ │ │ ├── rules-1.14 │ │ │ │ ├── alertmanager.rules.yaml │ │ │ │ ├── etcd.yaml │ │ │ │ ├── general.rules.yaml │ │ │ │ ├── k8s.rules.yaml │ │ │ │ ├── kube-apiserver-availability.rules.yaml │ │ │ │ ├── kube-apiserver-burnrate.rules.yaml │ │ │ │ ├── kube-apiserver-histogram.rules.yaml │ │ │ │ ├── kube-apiserver-slos.yaml │ │ │ │ ├── kube-apiserver.rules.yaml │ │ │ │ ├── kube-prometheus-general.rules.yaml │ │ │ │ ├── kube-prometheus-node-recording.rules.yaml │ │ │ │ ├── kube-scheduler.rules.yaml │ │ │ │ ├── kube-state-metrics.yaml │ │ │ │ ├── kubelet.rules.yaml │ │ │ │ ├── kubernetes-apps.yaml │ │ │ │ ├── kubernetes-resources.yaml │ │ │ │ ├── kubernetes-storage.yaml │ │ │ │ ├── kubernetes-system-apiserver.yaml │ │ │ │ ├── kubernetes-system-controller-manager.yaml │ │ │ │ ├── kubernetes-system-kubelet.yaml │ │ │ │ ├── kubernetes-system-scheduler.yaml │ │ │ │ ├── kubernetes-system.yaml │ │ │ │ ├── node-exporter.rules.yaml │ │ │ │ ├── node-exporter.yaml │ │ │ │ ├── node-network.yaml │ │ │ │ ├── node.rules.yaml │ │ │ │ ├── prometheus-operator.yaml │ │ │ │ └── prometheus.yaml │ │ │ │ ├── service.yaml │ │ │ │ ├── serviceThanosSidecar.yaml │ │ │ │ ├── serviceThanosSidecarExternal.yaml │ │ │ │ ├── serviceaccount.yaml │ │ │ │ ├── servicemonitor.yaml │ │ │ │ ├── servicemonitorThanosSidecar.yaml │ │ │ │ ├── servicemonitors.yaml │ │ │ │ └── serviceperreplica.yaml │ │ │ └── values.yaml │ ├── Chapter 17 Alerts │ │ ├── alertmanager.yaml │ │ ├── bad-pod.yaml │ │ ├── sample_alertmanager.yaml │ │ └── test slack integration.txt │ ├── Chapter 5 Pods │ │ └── first-pod.yaml │ ├── Chapter 6 Services │ │ ├── first-pod.yaml │ │ └── webapp-service.yaml │ ├── Chapter 7 Exercise │ │ ├── pods.yaml │ │ └── services.yaml │ ├── Chapter 8 ReplicaSets │ │ ├── pods.yaml │ │ └── services.yaml │ ├── Chapter 9 Deployments │ │ ├── pods.yaml │ │ └── services.yaml │ ├── Going Further with Kubernetes │ │ ├── ConfigMaps │ │ │ ├── aws-credentials.yaml │ │ │ └── database-config.yaml │ │ ├── HPA │ │ │ └── autoscale-rules.yaml │ │ ├── Helm │ │ │ └── fleetman-helm-demo-start.yaml │ │ ├── Ingress │ │ │ ├── ingress-public.yaml │ │ │ ├── ingress-secure.yaml │ │ │ └── ingress.yaml │ │ ├── Other Workloads │ │ │ ├── cron.yaml │ │ │ ├── job.yaml │ │ │ ├── mongo-replicated.yaml │ │ │ ├── services.yaml │ │ │ ├── storage.yaml │ │ │ └── workloads.yaml │ │ └── RBAC │ │ │ └── rules-for-new-joiners.yaml │ ├── K8S Command Reference.pdf │ ├── README │ └── metrics-server.yaml └── README ├── dashboard.yaml └── microservice-source-code ├── release0-5 └── k8s-fleetman-webapp-angular │ ├── .dockerignore │ ├── .editorconfig │ ├── .gitignore │ ├── Dockerfile │ ├── README.md │ ├── angular.json │ ├── e2e │ ├── app.e2e-spec.ts │ ├── app.po.ts │ └── tsconfig.e2e.json │ ├── karma.conf.js │ ├── nginx.conf │ ├── package-lock.json │ ├── package.json │ ├── protractor.conf.js │ ├── src │ ├── app │ │ ├── app.component.css │ │ ├── app.component.html │ │ ├── app.component.spec.ts │ │ ├── app.component.ts │ │ ├── app.module.ts │ │ ├── header │ │ │ ├── header.component.css │ │ │ ├── header.component.html │ │ │ ├── header.component.spec.ts │ │ │ └── header.component.ts │ │ ├── map │ │ │ ├── map.component.css │ │ │ ├── map.component.html │ │ │ ├── map.component.spec.ts │ │ │ └── map.component.ts │ │ ├── vehicle.service.spec.ts │ │ ├── vehicle.service.ts │ │ ├── vehicle.ts │ │ └── vehicles │ │ │ ├── vehicles.component.css │ │ │ ├── vehicles.component.html │ │ │ ├── vehicles.component.spec.ts │ │ │ └── vehicles.component.ts │ ├── assets │ │ └── .gitkeep │ ├── environments │ │ ├── environment.prod.ts │ │ └── environment.ts │ ├── favicon.png │ ├── index.html │ ├── main.ts │ ├── polyfills.ts │ ├── styles.css │ ├── test.ts │ ├── tsconfig.app.json │ ├── tsconfig.spec.json │ └── typings.d.ts │ ├── tsconfig.json │ └── tslint.json ├── release0 └── k8s-fleetman-webapp-angular │ ├── .dockerignore │ ├── .editorconfig │ ├── .gitignore │ ├── Dockerfile │ ├── README.md │ ├── angular.json │ ├── e2e │ ├── app.e2e-spec.ts │ ├── app.po.ts │ └── tsconfig.e2e.json │ ├── karma.conf.js │ ├── nginx.conf │ ├── package-lock.json │ ├── package.json │ ├── protractor.conf.js │ ├── src │ ├── app │ │ ├── app.component.css │ │ ├── app.component.html │ │ ├── app.component.spec.ts │ │ ├── app.component.ts │ │ ├── app.module.ts │ │ ├── header │ │ │ ├── header.component.css │ │ │ ├── header.component.html │ │ │ ├── header.component.spec.ts │ │ │ └── header.component.ts │ │ ├── map │ │ │ ├── map.component.css │ │ │ ├── map.component.html │ │ │ ├── map.component.spec.ts │ │ │ └── map.component.ts │ │ ├── vehicle.service.spec.ts │ │ ├── vehicle.service.ts │ │ ├── vehicle.ts │ │ └── vehicles │ │ │ ├── vehicles.component.css │ │ │ ├── vehicles.component.html │ │ │ ├── vehicles.component.spec.ts │ │ │ └── vehicles.component.ts │ ├── assets │ │ └── .gitkeep │ ├── environments │ │ ├── environment.prod.ts │ │ └── environment.ts │ ├── favicon.png │ ├── index.html │ ├── main.ts │ ├── polyfills.ts │ ├── styles.css │ ├── test.ts │ ├── tsconfig.app.json │ ├── tsconfig.spec.json │ └── typings.d.ts │ ├── tsconfig.json │ └── tslint.json ├── release1 ├── .gitignore ├── k8s-fleetman-position-simulator │ ├── .gitignore │ ├── .mvn │ │ └── wrapper │ │ │ ├── maven-wrapper.jar │ │ │ └── maven-wrapper.properties │ ├── Dockerfile │ ├── LICENSE.md │ ├── README.md │ ├── mvnw │ ├── mvnw.cmd │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── virtualpairprogrammers │ │ │ │ └── simulator │ │ │ │ ├── PositionsimulatorApplication.java │ │ │ │ ├── journey │ │ │ │ ├── Journey.java │ │ │ │ └── JourneySimulator.java │ │ │ │ └── utils │ │ │ │ └── VehicleNameUtils.java │ │ └── resources │ │ │ ├── application-local-microservice.properties │ │ │ ├── application-localhost.properties │ │ │ ├── application-production-microservice.properties │ │ │ ├── generate_trackfile_from_gpx │ │ │ ├── reverse_and_duplicate │ │ │ ├── speed_up_vehicle │ │ │ └── tracks │ │ │ ├── city_truck │ │ │ ├── dronfield_round │ │ │ ├── dronfield_round_b │ │ │ ├── electronics_pcb_rush_deliveries │ │ │ ├── express_delivery1 │ │ │ ├── factory_run_a │ │ │ ├── factory_run_b │ │ │ ├── factory_run_c │ │ │ ├── factory_run_d │ │ │ ├── factory_run_e │ │ │ ├── factory_run_f │ │ │ ├── factory_run_g │ │ │ ├── factory_run_h │ │ │ ├── huddersfield_truck_a │ │ │ ├── huddersfield_truck_b │ │ │ ├── local_deliveries_a │ │ │ ├── local_deliveries_b │ │ │ ├── london_riverside │ │ │ ├── secret_service_a │ │ │ ├── secret_service_b │ │ │ ├── secret_service_c │ │ │ ├── secret_service_d │ │ │ ├── secret_service_e │ │ │ ├── secret_service_f │ │ │ ├── sheffield_truck_a │ │ │ ├── sheffield_truck_b │ │ │ ├── sheffield_truck_c │ │ │ ├── sheffield_truck_d │ │ │ ├── small_parcel_service1 │ │ │ ├── top_secret │ │ │ ├── university_internal_mail_a │ │ │ ├── university_internal_mail_b │ │ │ ├── university_internal_mail_c │ │ │ ├── university_internal_mail_d │ │ │ ├── university_internal_mail_e │ │ │ ├── university_internal_mail_f │ │ │ ├── university_internal_mail_g │ │ │ └── village_truck │ │ └── test │ │ └── java │ │ └── com │ │ └── virtualpairprogrammers │ │ └── PositionsimulatorApplicationTests.java ├── k8s-fleetman-position-tracker │ ├── .gitignore │ ├── .mvn │ │ └── wrapper │ │ │ ├── maven-wrapper.jar │ │ │ └── maven-wrapper.properties │ ├── Dockerfile │ ├── LICENSE │ ├── README.md │ ├── mvnw │ ├── mvnw.cmd │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── virtualpairprogrammers │ │ │ │ └── tracker │ │ │ │ ├── PositionTrackerApplication.java │ │ │ │ ├── data │ │ │ │ ├── Data.java │ │ │ │ └── DataBasicInMemoryImpl.java │ │ │ │ ├── domain │ │ │ │ ├── VehicleBuilder.java │ │ │ │ ├── VehicleNotFoundException.java │ │ │ │ └── VehiclePosition.java │ │ │ │ ├── messaging │ │ │ │ ├── LocalDevelopmentMessageSender.java │ │ │ │ └── MessageProcessor.java │ │ │ │ └── rest │ │ │ │ └── PositionReportsController.java │ │ └── resources │ │ │ ├── application-local-microservice.properties │ │ │ ├── application-localhost.properties │ │ │ ├── application-production-microservice.properties │ │ │ └── application-standalone.properties │ │ └── test │ │ └── java │ │ └── com │ │ └── virtualpairprogrammers │ │ ├── TestSpeedCalculations.java │ │ ├── TestUtils.java │ │ └── VehiclePositionTests.java ├── k8s-fleetman-queue │ ├── Dockerfile │ └── README.md └── k8s-fleetman-webapp-angular │ ├── .dockerignore │ ├── .editorconfig │ ├── .gitignore │ ├── Dockerfile │ ├── README.md │ ├── angular.json │ ├── e2e │ ├── app.e2e-spec.ts │ ├── app.po.ts │ └── tsconfig.e2e.json │ ├── karma.conf.js │ ├── nginx.conf │ ├── package-lock.json │ ├── package.json │ ├── protractor.conf.js │ ├── src │ ├── app │ │ ├── app.component.css │ │ ├── app.component.html │ │ ├── app.component.spec.ts │ │ ├── app.component.ts │ │ ├── app.module.ts │ │ ├── header │ │ │ ├── header.component.css │ │ │ ├── header.component.html │ │ │ ├── header.component.spec.ts │ │ │ └── header.component.ts │ │ ├── map │ │ │ ├── map.component.css │ │ │ ├── map.component.html │ │ │ ├── map.component.spec.ts │ │ │ └── map.component.ts │ │ ├── vehicle.service.spec.ts │ │ ├── vehicle.service.ts │ │ ├── vehicle.ts │ │ └── vehicles │ │ │ ├── vehicles.component.css │ │ │ ├── vehicles.component.html │ │ │ ├── vehicles.component.spec.ts │ │ │ └── vehicles.component.ts │ ├── assets │ │ └── .gitkeep │ ├── environments │ │ ├── environment.prod.ts │ │ └── environment.ts │ ├── favicon.png │ ├── index.html │ ├── main.ts │ ├── polyfills.ts │ ├── styles.css │ ├── test.ts │ ├── tsconfig.app.json │ ├── tsconfig.spec.json │ └── typings.d.ts │ ├── tsconfig.json │ └── tslint.json ├── release2 ├── k8s-fleetman-api-gateway │ ├── .mvn │ │ └── wrapper │ │ │ ├── maven-wrapper.jar │ │ │ └── maven-wrapper.properties │ ├── Dockerfile │ ├── LICENSE │ ├── README.md │ ├── mvnw │ ├── mvnw.cmd │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── virtualpairprogrammers │ │ │ │ └── api │ │ │ │ ├── FleetmanApiGateway.java │ │ │ │ ├── controllers │ │ │ │ └── VehicleController.java │ │ │ │ ├── domain │ │ │ │ ├── LatLong.java │ │ │ │ └── VehiclePosition.java │ │ │ │ └── services │ │ │ │ ├── PositionTrackingExternalService.java │ │ │ │ └── RemotePositionMicroserviceCalls.java │ │ └── resources │ │ │ ├── application-local-microservice.properties │ │ │ ├── application-localhost.properties │ │ │ └── application-production-microservice.properties │ │ └── test │ │ └── java │ │ └── com │ │ └── virtualpairprogrammers │ │ ├── FleetmanApplicationTests.java │ │ └── converters │ │ └── FeignDateConfiguration.java ├── k8s-fleetman-position-simulator │ ├── .gitignore │ ├── .mvn │ │ └── wrapper │ │ │ ├── maven-wrapper.jar │ │ │ └── maven-wrapper.properties │ ├── Dockerfile │ ├── LICENSE.md │ ├── README.md │ ├── mvnw │ ├── mvnw.cmd │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── virtualpairprogrammers │ │ │ │ └── simulator │ │ │ │ ├── PositionsimulatorApplication.java │ │ │ │ ├── journey │ │ │ │ ├── Journey.java │ │ │ │ └── JourneySimulator.java │ │ │ │ └── utils │ │ │ │ └── VehicleNameUtils.java │ │ └── resources │ │ │ ├── application-local-microservice.properties │ │ │ ├── application-localhost.properties │ │ │ ├── application-production-microservice.properties │ │ │ ├── generate_trackfile_from_gpx │ │ │ ├── reverse_and_duplicate │ │ │ ├── speed_up_vehicle │ │ │ └── tracks │ │ │ ├── city_truck │ │ │ ├── dronfield_round │ │ │ ├── dronfield_round_b │ │ │ ├── electronics_pcb_rush_deliveries │ │ │ ├── express_delivery1 │ │ │ ├── factory_run_a │ │ │ ├── factory_run_b │ │ │ ├── factory_run_c │ │ │ ├── factory_run_d │ │ │ ├── factory_run_e │ │ │ ├── factory_run_f │ │ │ ├── factory_run_g │ │ │ ├── factory_run_h │ │ │ ├── huddersfield_truck_a │ │ │ ├── huddersfield_truck_b │ │ │ ├── local_deliveries_a │ │ │ ├── local_deliveries_b │ │ │ ├── london_riverside │ │ │ ├── secret_service_a │ │ │ ├── secret_service_b │ │ │ ├── secret_service_c │ │ │ ├── secret_service_d │ │ │ ├── secret_service_e │ │ │ ├── secret_service_f │ │ │ ├── sheffield_truck_a │ │ │ ├── sheffield_truck_b │ │ │ ├── sheffield_truck_c │ │ │ ├── sheffield_truck_d │ │ │ ├── small_parcel_service1 │ │ │ ├── top_secret │ │ │ ├── university_internal_mail_a │ │ │ ├── university_internal_mail_b │ │ │ ├── university_internal_mail_c │ │ │ ├── university_internal_mail_d │ │ │ ├── university_internal_mail_e │ │ │ ├── university_internal_mail_f │ │ │ ├── university_internal_mail_g │ │ │ └── village_truck │ │ └── test │ │ └── java │ │ └── com │ │ └── virtualpairprogrammers │ │ └── PositionsimulatorApplicationTests.java ├── k8s-fleetman-position-tracker │ ├── .gitignore │ ├── .mvn │ │ └── wrapper │ │ │ ├── maven-wrapper.jar │ │ │ └── maven-wrapper.properties │ ├── Dockerfile │ ├── LICENSE │ ├── README.md │ ├── mvnw │ ├── mvnw.cmd │ ├── pom.xml │ └── src │ │ ├── main │ │ ├── java │ │ │ └── com │ │ │ │ └── virtualpairprogrammers │ │ │ │ └── tracker │ │ │ │ ├── PositionTrackerApplication.java │ │ │ │ ├── data │ │ │ │ ├── Data.java │ │ │ │ └── DataBasicInMemoryImpl.java │ │ │ │ ├── domain │ │ │ │ ├── VehicleBuilder.java │ │ │ │ ├── VehicleNotFoundException.java │ │ │ │ └── VehiclePosition.java │ │ │ │ ├── messaging │ │ │ │ ├── LocalDevelopmentMessageSender.java │ │ │ │ └── MessageProcessor.java │ │ │ │ └── rest │ │ │ │ └── PositionReportsController.java │ │ └── resources │ │ │ ├── application-local-microservice.properties │ │ │ ├── application-localhost.properties │ │ │ ├── application-production-microservice.properties │ │ │ └── application-standalone.properties │ │ └── test │ │ └── java │ │ └── com │ │ └── virtualpairprogrammers │ │ ├── TestBasicOperationsOnInMemoryDatabase.java │ │ ├── TestInMemoryOpsOnMultipleVehicles.java │ │ ├── TestSpeedCalculations.java │ │ ├── TestUtils.java │ │ └── VehiclePositionTests.java ├── k8s-fleetman-queue │ ├── Dockerfile │ └── README.md ├── k8s-fleetman-webapp-angular │ ├── .dockerignore │ ├── .editorconfig │ ├── .gitignore │ ├── Dockerfile │ ├── README.md │ ├── angular.json │ ├── e2e │ │ ├── app.e2e-spec.ts │ │ ├── app.po.ts │ │ └── tsconfig.e2e.json │ ├── karma.conf.js │ ├── nginx.conf │ ├── package-lock.json │ ├── package.json │ ├── protractor.conf.js │ ├── src │ │ ├── app │ │ │ ├── app.component.css │ │ │ ├── app.component.html │ │ │ ├── app.component.spec.ts │ │ │ ├── app.component.ts │ │ │ ├── app.module.ts │ │ │ ├── header │ │ │ │ ├── header.component.css │ │ │ │ ├── header.component.html │ │ │ │ ├── header.component.spec.ts │ │ │ │ └── header.component.ts │ │ │ ├── map │ │ │ │ ├── map.component.css │ │ │ │ ├── map.component.html │ │ │ │ ├── map.component.spec.ts │ │ │ │ └── map.component.ts │ │ │ ├── vehicle.service.spec.ts │ │ │ ├── vehicle.service.ts │ │ │ ├── vehicle.ts │ │ │ └── vehicles │ │ │ │ ├── vehicles.component.css │ │ │ │ ├── vehicles.component.html │ │ │ │ ├── vehicles.component.spec.ts │ │ │ │ └── vehicles.component.ts │ │ ├── assets │ │ │ └── .gitkeep │ │ ├── environments │ │ │ ├── environment.prod.ts │ │ │ └── environment.ts │ │ ├── favicon.png │ │ ├── index.html │ │ ├── main.ts │ │ ├── polyfills.ts │ │ ├── styles.css │ │ ├── test.ts │ │ ├── tsconfig.app.json │ │ ├── tsconfig.spec.json │ │ └── typings.d.ts │ ├── tsconfig.json │ └── tslint.json └── k8s-fleetman-webapp-angular19 │ └── fleetman-webapp │ ├── .dockerignore │ ├── .editorconfig │ ├── .gitignore │ ├── .vscode │ ├── extensions.json │ ├── launch.json │ └── tasks.json │ ├── Dockerfile │ ├── README.md │ ├── angular.json │ ├── nginx.conf │ ├── package-lock.json │ ├── package.json │ ├── public │ ├── apple-touch-icon.png │ ├── favicon-96x96.png │ ├── favicon.ico │ ├── favicon.png │ ├── favicon.svg │ ├── layers-2x.png │ ├── layers.png │ ├── marker-icon-2x.png │ ├── marker-icon.png │ ├── marker-shadow.png │ ├── site.webmanifest │ ├── web-app-manifest-192x192.png │ └── web-app-manifest-512x512.png │ ├── src │ ├── app │ │ ├── app.component.css │ │ ├── app.component.html │ │ ├── app.component.ts │ │ ├── app.config.ts │ │ ├── app.routes.ts │ │ ├── header │ │ │ ├── header.component.css │ │ │ ├── header.component.html │ │ │ └── header.component.ts │ │ ├── map │ │ │ ├── map.component.css │ │ │ ├── map.component.html │ │ │ └── map.component.ts │ │ ├── vehicle.service.ts │ │ ├── vehicle.ts │ │ └── vehicles │ │ │ ├── vehicles.component.css │ │ │ ├── vehicles.component.html │ │ │ └── vehicles.component.ts │ ├── index.html │ ├── main.ts │ └── styles.css │ ├── tsconfig.app.json │ ├── tsconfig.json │ └── tsconfig.spec.json └── release3 ├── README └── k8s-fleetman-position-tracker ├── .gitignore ├── .mvn └── wrapper │ ├── maven-wrapper.jar │ └── maven-wrapper.properties ├── Dockerfile ├── LICENSE ├── README.md ├── mvnw ├── mvnw.cmd ├── pom.xml └── src ├── main ├── java │ └── com │ │ └── virtualpairprogrammers │ │ └── tracker │ │ ├── PositionTrackerApplication.java │ │ ├── data │ │ ├── Data.java │ │ ├── DataBasicInMemoryImpl.java │ │ ├── DataMongoDbImpl.java │ │ └── PositionRepository.java │ │ ├── domain │ │ ├── VehicleBuilder.java │ │ ├── VehicleNotFoundException.java │ │ └── VehiclePosition.java │ │ ├── messaging │ │ ├── LocalDevelopmentMessageSender.java │ │ └── MessageProcessor.java │ │ └── rest │ │ └── PositionReportsController.java └── resources │ ├── application-local-microservice.properties │ ├── application-localhost.properties │ ├── application-production-microservice.properties │ └── application-standalone.properties └── test └── java └── com └── virtualpairprogrammers ├── TestSpeedCalculations.java ├── TestUtils.java └── VehiclePositionTests.java /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/README.md -------------------------------------------------------------------------------- /_course_files/Intel_AMD_Edition/Chapter 10 Networking/networking-tests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/Intel_AMD_Edition/Chapter 10 Networking/networking-tests.yaml -------------------------------------------------------------------------------- /_course_files/Intel_AMD_Edition/Chapter 10 Networking/pods.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/Intel_AMD_Edition/Chapter 10 Networking/pods.yaml -------------------------------------------------------------------------------- /_course_files/Intel_AMD_Edition/Chapter 10 Networking/services.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/Intel_AMD_Edition/Chapter 10 Networking/services.yaml -------------------------------------------------------------------------------- /_course_files/Intel_AMD_Edition/Chapter 11 Microservices/services.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/Intel_AMD_Edition/Chapter 11 Microservices/services.yaml -------------------------------------------------------------------------------- /_course_files/Intel_AMD_Edition/Chapter 11 Microservices/workloads.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/Intel_AMD_Edition/Chapter 11 Microservices/workloads.yaml -------------------------------------------------------------------------------- /_course_files/Intel_AMD_Edition/Chapter 12 Persistence/mongo-stack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/Intel_AMD_Edition/Chapter 12 Persistence/mongo-stack.yaml -------------------------------------------------------------------------------- /_course_files/Intel_AMD_Edition/Chapter 12 Persistence/services.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/Intel_AMD_Edition/Chapter 12 Persistence/services.yaml -------------------------------------------------------------------------------- /_course_files/Intel_AMD_Edition/Chapter 12 Persistence/storage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/Intel_AMD_Edition/Chapter 12 Persistence/storage.yaml -------------------------------------------------------------------------------- /_course_files/Intel_AMD_Edition/Chapter 12 Persistence/workloads.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/Intel_AMD_Edition/Chapter 12 Persistence/workloads.yaml -------------------------------------------------------------------------------- /_course_files/Intel_AMD_Edition/Chapter 13 AWS/ebs-csi-driver-install/install-ebs-driver.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/Intel_AMD_Edition/Chapter 13 AWS/ebs-csi-driver-install/install-ebs-driver.sh -------------------------------------------------------------------------------- /_course_files/Intel_AMD_Edition/Chapter 13 AWS/ebs-csi-driver-install/policy.json.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/Intel_AMD_Edition/Chapter 13 AWS/ebs-csi-driver-install/policy.json.template -------------------------------------------------------------------------------- /_course_files/Intel_AMD_Edition/Chapter 13 AWS/install kops.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/Intel_AMD_Edition/Chapter 13 AWS/install kops.txt -------------------------------------------------------------------------------- /_course_files/Intel_AMD_Edition/Chapter 13 AWS/install-eks.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/Intel_AMD_Edition/Chapter 13 AWS/install-eks.txt -------------------------------------------------------------------------------- /_course_files/Intel_AMD_Edition/Chapter 13 AWS/mongo-stack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/Intel_AMD_Edition/Chapter 13 AWS/mongo-stack.yaml -------------------------------------------------------------------------------- /_course_files/Intel_AMD_Edition/Chapter 13 AWS/services.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/Intel_AMD_Edition/Chapter 13 AWS/services.yaml -------------------------------------------------------------------------------- /_course_files/Intel_AMD_Edition/Chapter 13 AWS/storage-aws.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/Intel_AMD_Edition/Chapter 13 AWS/storage-aws.yaml -------------------------------------------------------------------------------- /_course_files/Intel_AMD_Edition/Chapter 13 AWS/workloads.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/Intel_AMD_Edition/Chapter 13 AWS/workloads.yaml -------------------------------------------------------------------------------- /_course_files/Intel_AMD_Edition/Chapter 15 ELK/elastic-stack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/Intel_AMD_Edition/Chapter 15 ELK/elastic-stack.yaml -------------------------------------------------------------------------------- /_course_files/Intel_AMD_Edition/Chapter 15 ELK/fluentd-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/Intel_AMD_Edition/Chapter 15 ELK/fluentd-config.yaml -------------------------------------------------------------------------------- /_course_files/Intel_AMD_Edition/Chapter 16 Monitoring/README-difference-between-yaml-files.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/Intel_AMD_Edition/Chapter 16 Monitoring/README-difference-between-yaml-files.txt -------------------------------------------------------------------------------- /_course_files/Intel_AMD_Edition/Chapter 16 Monitoring/crds.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/Intel_AMD_Edition/Chapter 16 Monitoring/crds.yaml -------------------------------------------------------------------------------- /_course_files/Intel_AMD_Edition/Chapter 16 Monitoring/eks-monitoring.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/Intel_AMD_Edition/Chapter 16 Monitoring/eks-monitoring.yaml -------------------------------------------------------------------------------- /_course_files/Intel_AMD_Edition/Chapter 16 Monitoring/kops-monitoring.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/Intel_AMD_Edition/Chapter 16 Monitoring/kops-monitoring.yaml -------------------------------------------------------------------------------- /_course_files/Intel_AMD_Edition/Chapter 16 Monitoring/raw_data/eks-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/Intel_AMD_Edition/Chapter 16 Monitoring/raw_data/eks-values.yaml -------------------------------------------------------------------------------- /_course_files/Intel_AMD_Edition/Chapter 16 Monitoring/raw_data/kops-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/Intel_AMD_Edition/Chapter 16 Monitoring/raw_data/kops-values.yaml -------------------------------------------------------------------------------- /_course_files/Intel_AMD_Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/Intel_AMD_Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/.helmignore -------------------------------------------------------------------------------- /_course_files/Intel_AMD_Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/Intel_AMD_Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/CONTRIBUTING.md -------------------------------------------------------------------------------- /_course_files/Intel_AMD_Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/Chart.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/Intel_AMD_Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/Chart.lock -------------------------------------------------------------------------------- /_course_files/Intel_AMD_Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/Intel_AMD_Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/Chart.yaml -------------------------------------------------------------------------------- /_course_files/Intel_AMD_Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/Intel_AMD_Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/README.md -------------------------------------------------------------------------------- /_course_files/Intel_AMD_Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/charts/grafana/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/Intel_AMD_Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/charts/grafana/.helmignore -------------------------------------------------------------------------------- /_course_files/Intel_AMD_Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/charts/grafana/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/Intel_AMD_Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/charts/grafana/Chart.yaml -------------------------------------------------------------------------------- /_course_files/Intel_AMD_Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/charts/grafana/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/Intel_AMD_Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/charts/grafana/README.md -------------------------------------------------------------------------------- /_course_files/Intel_AMD_Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/charts/grafana/ci/default-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/Intel_AMD_Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/charts/grafana/ci/default-values.yaml -------------------------------------------------------------------------------- /_course_files/Intel_AMD_Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/charts/grafana/dashboards/custom-dashboard.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /_course_files/Intel_AMD_Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/charts/grafana/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/Intel_AMD_Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/charts/grafana/templates/NOTES.txt -------------------------------------------------------------------------------- /_course_files/Intel_AMD_Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/charts/grafana/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/Intel_AMD_Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/charts/grafana/templates/_helpers.tpl -------------------------------------------------------------------------------- /_course_files/Intel_AMD_Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/charts/grafana/templates/_pod.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/Intel_AMD_Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/charts/grafana/templates/_pod.tpl -------------------------------------------------------------------------------- /_course_files/Intel_AMD_Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/charts/grafana/templates/hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/Intel_AMD_Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/charts/grafana/templates/hpa.yaml -------------------------------------------------------------------------------- /_course_files/Intel_AMD_Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/charts/grafana/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/Intel_AMD_Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/charts/grafana/templates/ingress.yaml -------------------------------------------------------------------------------- /_course_files/Intel_AMD_Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/charts/grafana/templates/pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/Intel_AMD_Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/charts/grafana/templates/pvc.yaml -------------------------------------------------------------------------------- /_course_files/Intel_AMD_Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/charts/grafana/templates/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/Intel_AMD_Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/charts/grafana/templates/role.yaml -------------------------------------------------------------------------------- /_course_files/Intel_AMD_Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/charts/grafana/templates/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/Intel_AMD_Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/charts/grafana/templates/secret.yaml -------------------------------------------------------------------------------- /_course_files/Intel_AMD_Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/charts/grafana/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/Intel_AMD_Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/charts/grafana/templates/service.yaml -------------------------------------------------------------------------------- /_course_files/Intel_AMD_Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/charts/grafana/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/Intel_AMD_Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/charts/grafana/values.yaml -------------------------------------------------------------------------------- /_course_files/Intel_AMD_Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/charts/kube-state-metrics/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/Intel_AMD_Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/charts/kube-state-metrics/.helmignore -------------------------------------------------------------------------------- /_course_files/Intel_AMD_Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/charts/kube-state-metrics/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/Intel_AMD_Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/charts/kube-state-metrics/Chart.yaml -------------------------------------------------------------------------------- /_course_files/Intel_AMD_Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/charts/kube-state-metrics/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/Intel_AMD_Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/charts/kube-state-metrics/OWNERS -------------------------------------------------------------------------------- /_course_files/Intel_AMD_Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/charts/kube-state-metrics/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/Intel_AMD_Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/charts/kube-state-metrics/README.md -------------------------------------------------------------------------------- /_course_files/Intel_AMD_Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/charts/kube-state-metrics/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/Intel_AMD_Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/charts/kube-state-metrics/values.yaml -------------------------------------------------------------------------------- /_course_files/Intel_AMD_Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/crds/crd-alertmanagerconfigs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/Intel_AMD_Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/crds/crd-alertmanagerconfigs.yaml -------------------------------------------------------------------------------- /_course_files/Intel_AMD_Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/crds/crd-alertmanagers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/Intel_AMD_Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/crds/crd-alertmanagers.yaml -------------------------------------------------------------------------------- /_course_files/Intel_AMD_Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/crds/crd-podmonitors.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/Intel_AMD_Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/crds/crd-podmonitors.yaml -------------------------------------------------------------------------------- /_course_files/Intel_AMD_Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/crds/crd-probes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/Intel_AMD_Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/crds/crd-probes.yaml -------------------------------------------------------------------------------- /_course_files/Intel_AMD_Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/crds/crd-prometheuses.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/Intel_AMD_Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/crds/crd-prometheuses.yaml -------------------------------------------------------------------------------- /_course_files/Intel_AMD_Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/crds/crd-prometheusrules.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/Intel_AMD_Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/crds/crd-prometheusrules.yaml -------------------------------------------------------------------------------- /_course_files/Intel_AMD_Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/crds/crd-servicemonitors.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/Intel_AMD_Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/crds/crd-servicemonitors.yaml -------------------------------------------------------------------------------- /_course_files/Intel_AMD_Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/crds/crd-thanosrulers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/Intel_AMD_Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/crds/crd-thanosrulers.yaml -------------------------------------------------------------------------------- /_course_files/Intel_AMD_Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/eks-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/Intel_AMD_Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/eks-values.yaml -------------------------------------------------------------------------------- /_course_files/Intel_AMD_Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/kops-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/Intel_AMD_Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/kops-values.yaml -------------------------------------------------------------------------------- /_course_files/Intel_AMD_Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/Intel_AMD_Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/templates/NOTES.txt -------------------------------------------------------------------------------- /_course_files/Intel_AMD_Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/Intel_AMD_Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/templates/_helpers.tpl -------------------------------------------------------------------------------- /_course_files/Intel_AMD_Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/templates/alertmanager/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/Intel_AMD_Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/templates/alertmanager/ingress.yaml -------------------------------------------------------------------------------- /_course_files/Intel_AMD_Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/templates/alertmanager/psp-role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/Intel_AMD_Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/templates/alertmanager/psp-role.yaml -------------------------------------------------------------------------------- /_course_files/Intel_AMD_Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/templates/alertmanager/psp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/Intel_AMD_Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/templates/alertmanager/psp.yaml -------------------------------------------------------------------------------- /_course_files/Intel_AMD_Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/templates/alertmanager/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/Intel_AMD_Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/templates/alertmanager/secret.yaml -------------------------------------------------------------------------------- /_course_files/Intel_AMD_Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/templates/alertmanager/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/Intel_AMD_Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/templates/alertmanager/service.yaml -------------------------------------------------------------------------------- /_course_files/Intel_AMD_Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/templates/grafana/servicemonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/Intel_AMD_Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/templates/grafana/servicemonitor.yaml -------------------------------------------------------------------------------- /_course_files/Intel_AMD_Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/templates/prometheus/_rules.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/Intel_AMD_Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/templates/prometheus/_rules.tpl -------------------------------------------------------------------------------- /_course_files/Intel_AMD_Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/templates/prometheus/clusterrole.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/Intel_AMD_Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/templates/prometheus/clusterrole.yaml -------------------------------------------------------------------------------- /_course_files/Intel_AMD_Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/templates/prometheus/csi-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/Intel_AMD_Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/templates/prometheus/csi-secret.yaml -------------------------------------------------------------------------------- /_course_files/Intel_AMD_Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/templates/prometheus/extrasecret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/Intel_AMD_Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/templates/prometheus/extrasecret.yaml -------------------------------------------------------------------------------- /_course_files/Intel_AMD_Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/templates/prometheus/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/Intel_AMD_Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/templates/prometheus/ingress.yaml -------------------------------------------------------------------------------- /_course_files/Intel_AMD_Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/templates/prometheus/podmonitors.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/Intel_AMD_Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/templates/prometheus/podmonitors.yaml -------------------------------------------------------------------------------- /_course_files/Intel_AMD_Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/templates/prometheus/prometheus.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/Intel_AMD_Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/templates/prometheus/prometheus.yaml -------------------------------------------------------------------------------- /_course_files/Intel_AMD_Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/templates/prometheus/psp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/Intel_AMD_Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/templates/prometheus/psp.yaml -------------------------------------------------------------------------------- /_course_files/Intel_AMD_Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/templates/prometheus/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/Intel_AMD_Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/templates/prometheus/service.yaml -------------------------------------------------------------------------------- /_course_files/Intel_AMD_Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/Intel_AMD_Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/values.yaml -------------------------------------------------------------------------------- /_course_files/Intel_AMD_Edition/Chapter 17 Alerts/alertmanager.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/Intel_AMD_Edition/Chapter 17 Alerts/alertmanager.yaml -------------------------------------------------------------------------------- /_course_files/Intel_AMD_Edition/Chapter 17 Alerts/bad-pod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/Intel_AMD_Edition/Chapter 17 Alerts/bad-pod.yaml -------------------------------------------------------------------------------- /_course_files/Intel_AMD_Edition/Chapter 17 Alerts/sample_alertmanager.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/Intel_AMD_Edition/Chapter 17 Alerts/sample_alertmanager.yaml -------------------------------------------------------------------------------- /_course_files/Intel_AMD_Edition/Chapter 17 Alerts/test slack integration.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/Intel_AMD_Edition/Chapter 17 Alerts/test slack integration.txt -------------------------------------------------------------------------------- /_course_files/Intel_AMD_Edition/Chapter 5 Pods/first-pod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/Intel_AMD_Edition/Chapter 5 Pods/first-pod.yaml -------------------------------------------------------------------------------- /_course_files/Intel_AMD_Edition/Chapter 6 Services/first-pod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/Intel_AMD_Edition/Chapter 6 Services/first-pod.yaml -------------------------------------------------------------------------------- /_course_files/Intel_AMD_Edition/Chapter 6 Services/webapp-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/Intel_AMD_Edition/Chapter 6 Services/webapp-service.yaml -------------------------------------------------------------------------------- /_course_files/Intel_AMD_Edition/Chapter 7 Exercise/pods.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/Intel_AMD_Edition/Chapter 7 Exercise/pods.yaml -------------------------------------------------------------------------------- /_course_files/Intel_AMD_Edition/Chapter 7 Exercise/services.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/Intel_AMD_Edition/Chapter 7 Exercise/services.yaml -------------------------------------------------------------------------------- /_course_files/Intel_AMD_Edition/Chapter 8 ReplicaSets/pods.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/Intel_AMD_Edition/Chapter 8 ReplicaSets/pods.yaml -------------------------------------------------------------------------------- /_course_files/Intel_AMD_Edition/Chapter 8 ReplicaSets/services.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/Intel_AMD_Edition/Chapter 8 ReplicaSets/services.yaml -------------------------------------------------------------------------------- /_course_files/Intel_AMD_Edition/Chapter 9 Deployments/pods.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/Intel_AMD_Edition/Chapter 9 Deployments/pods.yaml -------------------------------------------------------------------------------- /_course_files/Intel_AMD_Edition/Chapter 9 Deployments/services.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/Intel_AMD_Edition/Chapter 9 Deployments/services.yaml -------------------------------------------------------------------------------- /_course_files/Intel_AMD_Edition/Going Further with Kubernetes/ConfigMaps/aws-credentials.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/Intel_AMD_Edition/Going Further with Kubernetes/ConfigMaps/aws-credentials.yaml -------------------------------------------------------------------------------- /_course_files/Intel_AMD_Edition/Going Further with Kubernetes/ConfigMaps/database-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/Intel_AMD_Edition/Going Further with Kubernetes/ConfigMaps/database-config.yaml -------------------------------------------------------------------------------- /_course_files/Intel_AMD_Edition/Going Further with Kubernetes/HPA/autoscale-rules.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/Intel_AMD_Edition/Going Further with Kubernetes/HPA/autoscale-rules.yaml -------------------------------------------------------------------------------- /_course_files/Intel_AMD_Edition/Going Further with Kubernetes/Helm/fleetman-helm-demo-start.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/Intel_AMD_Edition/Going Further with Kubernetes/Helm/fleetman-helm-demo-start.yaml -------------------------------------------------------------------------------- /_course_files/Intel_AMD_Edition/Going Further with Kubernetes/Ingress/ingress-public.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/Intel_AMD_Edition/Going Further with Kubernetes/Ingress/ingress-public.yaml -------------------------------------------------------------------------------- /_course_files/Intel_AMD_Edition/Going Further with Kubernetes/Ingress/ingress-secure.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/Intel_AMD_Edition/Going Further with Kubernetes/Ingress/ingress-secure.yaml -------------------------------------------------------------------------------- /_course_files/Intel_AMD_Edition/Going Further with Kubernetes/Ingress/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/Intel_AMD_Edition/Going Further with Kubernetes/Ingress/ingress.yaml -------------------------------------------------------------------------------- /_course_files/Intel_AMD_Edition/Going Further with Kubernetes/Other Workloads/cron.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/Intel_AMD_Edition/Going Further with Kubernetes/Other Workloads/cron.yaml -------------------------------------------------------------------------------- /_course_files/Intel_AMD_Edition/Going Further with Kubernetes/Other Workloads/job.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/Intel_AMD_Edition/Going Further with Kubernetes/Other Workloads/job.yaml -------------------------------------------------------------------------------- /_course_files/Intel_AMD_Edition/Going Further with Kubernetes/Other Workloads/mongo-replicated.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/Intel_AMD_Edition/Going Further with Kubernetes/Other Workloads/mongo-replicated.yaml -------------------------------------------------------------------------------- /_course_files/Intel_AMD_Edition/Going Further with Kubernetes/Other Workloads/services.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/Intel_AMD_Edition/Going Further with Kubernetes/Other Workloads/services.yaml -------------------------------------------------------------------------------- /_course_files/Intel_AMD_Edition/Going Further with Kubernetes/Other Workloads/storage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/Intel_AMD_Edition/Going Further with Kubernetes/Other Workloads/storage.yaml -------------------------------------------------------------------------------- /_course_files/Intel_AMD_Edition/Going Further with Kubernetes/Other Workloads/workloads.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/Intel_AMD_Edition/Going Further with Kubernetes/Other Workloads/workloads.yaml -------------------------------------------------------------------------------- /_course_files/Intel_AMD_Edition/Going Further with Kubernetes/RBAC/rules-for-new-joiners.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/Intel_AMD_Edition/Going Further with Kubernetes/RBAC/rules-for-new-joiners.yaml -------------------------------------------------------------------------------- /_course_files/Intel_AMD_Edition/K8S Command Reference.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/Intel_AMD_Edition/K8S Command Reference.pdf -------------------------------------------------------------------------------- /_course_files/Intel_AMD_Edition/metrics-server.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/Intel_AMD_Edition/metrics-server.yaml -------------------------------------------------------------------------------- /_course_files/MacARM64Edition/Chapter 10 Networking/networking-tests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/MacARM64Edition/Chapter 10 Networking/networking-tests.yaml -------------------------------------------------------------------------------- /_course_files/MacARM64Edition/Chapter 10 Networking/pods.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/MacARM64Edition/Chapter 10 Networking/pods.yaml -------------------------------------------------------------------------------- /_course_files/MacARM64Edition/Chapter 10 Networking/services.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/MacARM64Edition/Chapter 10 Networking/services.yaml -------------------------------------------------------------------------------- /_course_files/MacARM64Edition/Chapter 11 Microservices/services.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/MacARM64Edition/Chapter 11 Microservices/services.yaml -------------------------------------------------------------------------------- /_course_files/MacARM64Edition/Chapter 11 Microservices/workloads.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/MacARM64Edition/Chapter 11 Microservices/workloads.yaml -------------------------------------------------------------------------------- /_course_files/MacARM64Edition/Chapter 12 Persistence/mongo-stack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/MacARM64Edition/Chapter 12 Persistence/mongo-stack.yaml -------------------------------------------------------------------------------- /_course_files/MacARM64Edition/Chapter 12 Persistence/services.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/MacARM64Edition/Chapter 12 Persistence/services.yaml -------------------------------------------------------------------------------- /_course_files/MacARM64Edition/Chapter 12 Persistence/storage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/MacARM64Edition/Chapter 12 Persistence/storage.yaml -------------------------------------------------------------------------------- /_course_files/MacARM64Edition/Chapter 12 Persistence/workloads.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/MacARM64Edition/Chapter 12 Persistence/workloads.yaml -------------------------------------------------------------------------------- /_course_files/MacARM64Edition/Chapter 13 AWS/IMPORTANT_NOTE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/MacARM64Edition/Chapter 13 AWS/IMPORTANT_NOTE.txt -------------------------------------------------------------------------------- /_course_files/MacARM64Edition/Chapter 13 AWS/install kops.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/MacARM64Edition/Chapter 13 AWS/install kops.txt -------------------------------------------------------------------------------- /_course_files/MacARM64Edition/Chapter 13 AWS/install-eks.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/MacARM64Edition/Chapter 13 AWS/install-eks.txt -------------------------------------------------------------------------------- /_course_files/MacARM64Edition/Chapter 13 AWS/mongo-stack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/MacARM64Edition/Chapter 13 AWS/mongo-stack.yaml -------------------------------------------------------------------------------- /_course_files/MacARM64Edition/Chapter 13 AWS/services.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/MacARM64Edition/Chapter 13 AWS/services.yaml -------------------------------------------------------------------------------- /_course_files/MacARM64Edition/Chapter 13 AWS/storage-aws.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/MacARM64Edition/Chapter 13 AWS/storage-aws.yaml -------------------------------------------------------------------------------- /_course_files/MacARM64Edition/Chapter 13 AWS/workloads.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/MacARM64Edition/Chapter 13 AWS/workloads.yaml -------------------------------------------------------------------------------- /_course_files/MacARM64Edition/Chapter 15 ELK/elastic-stack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/MacARM64Edition/Chapter 15 ELK/elastic-stack.yaml -------------------------------------------------------------------------------- /_course_files/MacARM64Edition/Chapter 15 ELK/fluentd-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/MacARM64Edition/Chapter 15 ELK/fluentd-config.yaml -------------------------------------------------------------------------------- /_course_files/MacARM64Edition/Chapter 16 Monitoring/README-difference-between-yaml-files.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/MacARM64Edition/Chapter 16 Monitoring/README-difference-between-yaml-files.txt -------------------------------------------------------------------------------- /_course_files/MacARM64Edition/Chapter 16 Monitoring/crds.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/MacARM64Edition/Chapter 16 Monitoring/crds.yaml -------------------------------------------------------------------------------- /_course_files/MacARM64Edition/Chapter 16 Monitoring/eks-monitoring.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/MacARM64Edition/Chapter 16 Monitoring/eks-monitoring.yaml -------------------------------------------------------------------------------- /_course_files/MacARM64Edition/Chapter 16 Monitoring/kops-monitoring.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/MacARM64Edition/Chapter 16 Monitoring/kops-monitoring.yaml -------------------------------------------------------------------------------- /_course_files/MacARM64Edition/Chapter 16 Monitoring/raw_data/eks-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/MacARM64Edition/Chapter 16 Monitoring/raw_data/eks-values.yaml -------------------------------------------------------------------------------- /_course_files/MacARM64Edition/Chapter 16 Monitoring/raw_data/kops-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/MacARM64Edition/Chapter 16 Monitoring/raw_data/kops-values.yaml -------------------------------------------------------------------------------- /_course_files/MacARM64Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/MacARM64Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/.helmignore -------------------------------------------------------------------------------- /_course_files/MacARM64Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/MacARM64Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/CONTRIBUTING.md -------------------------------------------------------------------------------- /_course_files/MacARM64Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/Chart.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/MacARM64Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/Chart.lock -------------------------------------------------------------------------------- /_course_files/MacARM64Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/MacARM64Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/Chart.yaml -------------------------------------------------------------------------------- /_course_files/MacARM64Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/MacARM64Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/README.md -------------------------------------------------------------------------------- /_course_files/MacARM64Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/charts/grafana/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/MacARM64Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/charts/grafana/.helmignore -------------------------------------------------------------------------------- /_course_files/MacARM64Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/charts/grafana/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/MacARM64Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/charts/grafana/Chart.yaml -------------------------------------------------------------------------------- /_course_files/MacARM64Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/charts/grafana/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/MacARM64Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/charts/grafana/README.md -------------------------------------------------------------------------------- /_course_files/MacARM64Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/charts/grafana/ci/default-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/MacARM64Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/charts/grafana/ci/default-values.yaml -------------------------------------------------------------------------------- /_course_files/MacARM64Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/charts/grafana/dashboards/custom-dashboard.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /_course_files/MacARM64Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/charts/grafana/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/MacARM64Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/charts/grafana/templates/NOTES.txt -------------------------------------------------------------------------------- /_course_files/MacARM64Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/charts/grafana/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/MacARM64Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/charts/grafana/templates/_helpers.tpl -------------------------------------------------------------------------------- /_course_files/MacARM64Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/charts/grafana/templates/_pod.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/MacARM64Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/charts/grafana/templates/_pod.tpl -------------------------------------------------------------------------------- /_course_files/MacARM64Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/charts/grafana/templates/configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/MacARM64Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/charts/grafana/templates/configmap.yaml -------------------------------------------------------------------------------- /_course_files/MacARM64Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/charts/grafana/templates/hpa.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/MacARM64Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/charts/grafana/templates/hpa.yaml -------------------------------------------------------------------------------- /_course_files/MacARM64Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/charts/grafana/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/MacARM64Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/charts/grafana/templates/ingress.yaml -------------------------------------------------------------------------------- /_course_files/MacARM64Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/charts/grafana/templates/pvc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/MacARM64Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/charts/grafana/templates/pvc.yaml -------------------------------------------------------------------------------- /_course_files/MacARM64Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/charts/grafana/templates/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/MacARM64Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/charts/grafana/templates/role.yaml -------------------------------------------------------------------------------- /_course_files/MacARM64Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/charts/grafana/templates/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/MacARM64Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/charts/grafana/templates/secret.yaml -------------------------------------------------------------------------------- /_course_files/MacARM64Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/charts/grafana/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/MacARM64Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/charts/grafana/templates/service.yaml -------------------------------------------------------------------------------- /_course_files/MacARM64Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/charts/grafana/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/MacARM64Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/charts/grafana/values.yaml -------------------------------------------------------------------------------- /_course_files/MacARM64Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/charts/kube-state-metrics/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/MacARM64Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/charts/kube-state-metrics/.helmignore -------------------------------------------------------------------------------- /_course_files/MacARM64Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/charts/kube-state-metrics/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/MacARM64Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/charts/kube-state-metrics/Chart.yaml -------------------------------------------------------------------------------- /_course_files/MacARM64Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/charts/kube-state-metrics/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/MacARM64Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/charts/kube-state-metrics/OWNERS -------------------------------------------------------------------------------- /_course_files/MacARM64Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/charts/kube-state-metrics/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/MacARM64Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/charts/kube-state-metrics/README.md -------------------------------------------------------------------------------- /_course_files/MacARM64Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/charts/kube-state-metrics/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/MacARM64Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/charts/kube-state-metrics/values.yaml -------------------------------------------------------------------------------- /_course_files/MacARM64Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/crds/crd-alertmanagerconfigs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/MacARM64Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/crds/crd-alertmanagerconfigs.yaml -------------------------------------------------------------------------------- /_course_files/MacARM64Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/crds/crd-alertmanagers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/MacARM64Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/crds/crd-alertmanagers.yaml -------------------------------------------------------------------------------- /_course_files/MacARM64Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/crds/crd-podmonitors.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/MacARM64Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/crds/crd-podmonitors.yaml -------------------------------------------------------------------------------- /_course_files/MacARM64Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/crds/crd-probes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/MacARM64Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/crds/crd-probes.yaml -------------------------------------------------------------------------------- /_course_files/MacARM64Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/crds/crd-prometheuses.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/MacARM64Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/crds/crd-prometheuses.yaml -------------------------------------------------------------------------------- /_course_files/MacARM64Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/crds/crd-prometheusrules.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/MacARM64Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/crds/crd-prometheusrules.yaml -------------------------------------------------------------------------------- /_course_files/MacARM64Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/crds/crd-servicemonitors.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/MacARM64Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/crds/crd-servicemonitors.yaml -------------------------------------------------------------------------------- /_course_files/MacARM64Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/crds/crd-thanosrulers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/MacARM64Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/crds/crd-thanosrulers.yaml -------------------------------------------------------------------------------- /_course_files/MacARM64Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/eks-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/MacARM64Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/eks-values.yaml -------------------------------------------------------------------------------- /_course_files/MacARM64Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/kops-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/MacARM64Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/kops-values.yaml -------------------------------------------------------------------------------- /_course_files/MacARM64Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/MacARM64Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/templates/NOTES.txt -------------------------------------------------------------------------------- /_course_files/MacARM64Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/MacARM64Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/templates/_helpers.tpl -------------------------------------------------------------------------------- /_course_files/MacARM64Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/templates/alertmanager/extrasecret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/MacARM64Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/templates/alertmanager/extrasecret.yaml -------------------------------------------------------------------------------- /_course_files/MacARM64Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/templates/alertmanager/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/MacARM64Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/templates/alertmanager/ingress.yaml -------------------------------------------------------------------------------- /_course_files/MacARM64Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/templates/alertmanager/psp-role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/MacARM64Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/templates/alertmanager/psp-role.yaml -------------------------------------------------------------------------------- /_course_files/MacARM64Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/templates/alertmanager/psp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/MacARM64Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/templates/alertmanager/psp.yaml -------------------------------------------------------------------------------- /_course_files/MacARM64Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/templates/alertmanager/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/MacARM64Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/templates/alertmanager/secret.yaml -------------------------------------------------------------------------------- /_course_files/MacARM64Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/templates/alertmanager/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/MacARM64Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/templates/alertmanager/service.yaml -------------------------------------------------------------------------------- /_course_files/MacARM64Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/templates/prometheus/_rules.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/MacARM64Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/templates/prometheus/_rules.tpl -------------------------------------------------------------------------------- /_course_files/MacARM64Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/templates/prometheus/csi-secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/MacARM64Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/templates/prometheus/csi-secret.yaml -------------------------------------------------------------------------------- /_course_files/MacARM64Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/templates/prometheus/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/MacARM64Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/templates/prometheus/ingress.yaml -------------------------------------------------------------------------------- /_course_files/MacARM64Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/templates/prometheus/prometheus.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/MacARM64Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/templates/prometheus/prometheus.yaml -------------------------------------------------------------------------------- /_course_files/MacARM64Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/templates/prometheus/psp.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/MacARM64Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/templates/prometheus/psp.yaml -------------------------------------------------------------------------------- /_course_files/MacARM64Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/templates/prometheus/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/MacARM64Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/templates/prometheus/service.yaml -------------------------------------------------------------------------------- /_course_files/MacARM64Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/MacARM64Edition/Chapter 16 Monitoring/raw_data/kube-prometheus-stack/values.yaml -------------------------------------------------------------------------------- /_course_files/MacARM64Edition/Chapter 17 Alerts/alertmanager.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/MacARM64Edition/Chapter 17 Alerts/alertmanager.yaml -------------------------------------------------------------------------------- /_course_files/MacARM64Edition/Chapter 17 Alerts/bad-pod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/MacARM64Edition/Chapter 17 Alerts/bad-pod.yaml -------------------------------------------------------------------------------- /_course_files/MacARM64Edition/Chapter 17 Alerts/sample_alertmanager.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/MacARM64Edition/Chapter 17 Alerts/sample_alertmanager.yaml -------------------------------------------------------------------------------- /_course_files/MacARM64Edition/Chapter 17 Alerts/test slack integration.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/MacARM64Edition/Chapter 17 Alerts/test slack integration.txt -------------------------------------------------------------------------------- /_course_files/MacARM64Edition/Chapter 5 Pods/first-pod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/MacARM64Edition/Chapter 5 Pods/first-pod.yaml -------------------------------------------------------------------------------- /_course_files/MacARM64Edition/Chapter 6 Services/first-pod.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/MacARM64Edition/Chapter 6 Services/first-pod.yaml -------------------------------------------------------------------------------- /_course_files/MacARM64Edition/Chapter 6 Services/webapp-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/MacARM64Edition/Chapter 6 Services/webapp-service.yaml -------------------------------------------------------------------------------- /_course_files/MacARM64Edition/Chapter 7 Exercise/pods.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/MacARM64Edition/Chapter 7 Exercise/pods.yaml -------------------------------------------------------------------------------- /_course_files/MacARM64Edition/Chapter 7 Exercise/services.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/MacARM64Edition/Chapter 7 Exercise/services.yaml -------------------------------------------------------------------------------- /_course_files/MacARM64Edition/Chapter 8 ReplicaSets/pods.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/MacARM64Edition/Chapter 8 ReplicaSets/pods.yaml -------------------------------------------------------------------------------- /_course_files/MacARM64Edition/Chapter 8 ReplicaSets/services.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/MacARM64Edition/Chapter 8 ReplicaSets/services.yaml -------------------------------------------------------------------------------- /_course_files/MacARM64Edition/Chapter 9 Deployments/pods.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/MacARM64Edition/Chapter 9 Deployments/pods.yaml -------------------------------------------------------------------------------- /_course_files/MacARM64Edition/Chapter 9 Deployments/services.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/MacARM64Edition/Chapter 9 Deployments/services.yaml -------------------------------------------------------------------------------- /_course_files/MacARM64Edition/Going Further with Kubernetes/ConfigMaps/aws-credentials.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/MacARM64Edition/Going Further with Kubernetes/ConfigMaps/aws-credentials.yaml -------------------------------------------------------------------------------- /_course_files/MacARM64Edition/Going Further with Kubernetes/ConfigMaps/database-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/MacARM64Edition/Going Further with Kubernetes/ConfigMaps/database-config.yaml -------------------------------------------------------------------------------- /_course_files/MacARM64Edition/Going Further with Kubernetes/HPA/autoscale-rules.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/MacARM64Edition/Going Further with Kubernetes/HPA/autoscale-rules.yaml -------------------------------------------------------------------------------- /_course_files/MacARM64Edition/Going Further with Kubernetes/Helm/fleetman-helm-demo-start.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/MacARM64Edition/Going Further with Kubernetes/Helm/fleetman-helm-demo-start.yaml -------------------------------------------------------------------------------- /_course_files/MacARM64Edition/Going Further with Kubernetes/Ingress/ingress-public.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/MacARM64Edition/Going Further with Kubernetes/Ingress/ingress-public.yaml -------------------------------------------------------------------------------- /_course_files/MacARM64Edition/Going Further with Kubernetes/Ingress/ingress-secure.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/MacARM64Edition/Going Further with Kubernetes/Ingress/ingress-secure.yaml -------------------------------------------------------------------------------- /_course_files/MacARM64Edition/Going Further with Kubernetes/Ingress/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/MacARM64Edition/Going Further with Kubernetes/Ingress/ingress.yaml -------------------------------------------------------------------------------- /_course_files/MacARM64Edition/Going Further with Kubernetes/Other Workloads/cron.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/MacARM64Edition/Going Further with Kubernetes/Other Workloads/cron.yaml -------------------------------------------------------------------------------- /_course_files/MacARM64Edition/Going Further with Kubernetes/Other Workloads/job.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/MacARM64Edition/Going Further with Kubernetes/Other Workloads/job.yaml -------------------------------------------------------------------------------- /_course_files/MacARM64Edition/Going Further with Kubernetes/Other Workloads/mongo-replicated.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/MacARM64Edition/Going Further with Kubernetes/Other Workloads/mongo-replicated.yaml -------------------------------------------------------------------------------- /_course_files/MacARM64Edition/Going Further with Kubernetes/Other Workloads/services.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/MacARM64Edition/Going Further with Kubernetes/Other Workloads/services.yaml -------------------------------------------------------------------------------- /_course_files/MacARM64Edition/Going Further with Kubernetes/Other Workloads/storage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/MacARM64Edition/Going Further with Kubernetes/Other Workloads/storage.yaml -------------------------------------------------------------------------------- /_course_files/MacARM64Edition/Going Further with Kubernetes/Other Workloads/workloads.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/MacARM64Edition/Going Further with Kubernetes/Other Workloads/workloads.yaml -------------------------------------------------------------------------------- /_course_files/MacARM64Edition/Going Further with Kubernetes/RBAC/rules-for-new-joiners.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/MacARM64Edition/Going Further with Kubernetes/RBAC/rules-for-new-joiners.yaml -------------------------------------------------------------------------------- /_course_files/MacARM64Edition/K8S Command Reference.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/MacARM64Edition/K8S Command Reference.pdf -------------------------------------------------------------------------------- /_course_files/MacARM64Edition/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/MacARM64Edition/README -------------------------------------------------------------------------------- /_course_files/MacARM64Edition/metrics-server.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/MacARM64Edition/metrics-server.yaml -------------------------------------------------------------------------------- /_course_files/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/_course_files/README -------------------------------------------------------------------------------- /dashboard.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/dashboard.yaml -------------------------------------------------------------------------------- /microservice-source-code/release0-5/k8s-fleetman-webapp-angular/.dockerignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | -------------------------------------------------------------------------------- /microservice-source-code/release0-5/k8s-fleetman-webapp-angular/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release0-5/k8s-fleetman-webapp-angular/.editorconfig -------------------------------------------------------------------------------- /microservice-source-code/release0-5/k8s-fleetman-webapp-angular/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release0-5/k8s-fleetman-webapp-angular/.gitignore -------------------------------------------------------------------------------- /microservice-source-code/release0-5/k8s-fleetman-webapp-angular/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release0-5/k8s-fleetman-webapp-angular/Dockerfile -------------------------------------------------------------------------------- /microservice-source-code/release0-5/k8s-fleetman-webapp-angular/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release0-5/k8s-fleetman-webapp-angular/README.md -------------------------------------------------------------------------------- /microservice-source-code/release0-5/k8s-fleetman-webapp-angular/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release0-5/k8s-fleetman-webapp-angular/angular.json -------------------------------------------------------------------------------- /microservice-source-code/release0-5/k8s-fleetman-webapp-angular/e2e/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release0-5/k8s-fleetman-webapp-angular/e2e/app.e2e-spec.ts -------------------------------------------------------------------------------- /microservice-source-code/release0-5/k8s-fleetman-webapp-angular/e2e/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release0-5/k8s-fleetman-webapp-angular/e2e/app.po.ts -------------------------------------------------------------------------------- /microservice-source-code/release0-5/k8s-fleetman-webapp-angular/e2e/tsconfig.e2e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release0-5/k8s-fleetman-webapp-angular/e2e/tsconfig.e2e.json -------------------------------------------------------------------------------- /microservice-source-code/release0-5/k8s-fleetman-webapp-angular/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release0-5/k8s-fleetman-webapp-angular/karma.conf.js -------------------------------------------------------------------------------- /microservice-source-code/release0-5/k8s-fleetman-webapp-angular/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release0-5/k8s-fleetman-webapp-angular/nginx.conf -------------------------------------------------------------------------------- /microservice-source-code/release0-5/k8s-fleetman-webapp-angular/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release0-5/k8s-fleetman-webapp-angular/package-lock.json -------------------------------------------------------------------------------- /microservice-source-code/release0-5/k8s-fleetman-webapp-angular/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release0-5/k8s-fleetman-webapp-angular/package.json -------------------------------------------------------------------------------- /microservice-source-code/release0-5/k8s-fleetman-webapp-angular/protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release0-5/k8s-fleetman-webapp-angular/protractor.conf.js -------------------------------------------------------------------------------- /microservice-source-code/release0-5/k8s-fleetman-webapp-angular/src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /microservice-source-code/release0-5/k8s-fleetman-webapp-angular/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release0-5/k8s-fleetman-webapp-angular/src/app/app.component.html -------------------------------------------------------------------------------- /microservice-source-code/release0-5/k8s-fleetman-webapp-angular/src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release0-5/k8s-fleetman-webapp-angular/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /microservice-source-code/release0-5/k8s-fleetman-webapp-angular/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release0-5/k8s-fleetman-webapp-angular/src/app/app.component.ts -------------------------------------------------------------------------------- /microservice-source-code/release0-5/k8s-fleetman-webapp-angular/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release0-5/k8s-fleetman-webapp-angular/src/app/app.module.ts -------------------------------------------------------------------------------- /microservice-source-code/release0-5/k8s-fleetman-webapp-angular/src/app/header/header.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /microservice-source-code/release0-5/k8s-fleetman-webapp-angular/src/app/header/header.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release0-5/k8s-fleetman-webapp-angular/src/app/header/header.component.html -------------------------------------------------------------------------------- /microservice-source-code/release0-5/k8s-fleetman-webapp-angular/src/app/header/header.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release0-5/k8s-fleetman-webapp-angular/src/app/header/header.component.spec.ts -------------------------------------------------------------------------------- /microservice-source-code/release0-5/k8s-fleetman-webapp-angular/src/app/header/header.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release0-5/k8s-fleetman-webapp-angular/src/app/header/header.component.ts -------------------------------------------------------------------------------- /microservice-source-code/release0-5/k8s-fleetman-webapp-angular/src/app/map/map.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /microservice-source-code/release0-5/k8s-fleetman-webapp-angular/src/app/map/map.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release0-5/k8s-fleetman-webapp-angular/src/app/map/map.component.html -------------------------------------------------------------------------------- /microservice-source-code/release0-5/k8s-fleetman-webapp-angular/src/app/map/map.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release0-5/k8s-fleetman-webapp-angular/src/app/map/map.component.spec.ts -------------------------------------------------------------------------------- /microservice-source-code/release0-5/k8s-fleetman-webapp-angular/src/app/map/map.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release0-5/k8s-fleetman-webapp-angular/src/app/map/map.component.ts -------------------------------------------------------------------------------- /microservice-source-code/release0-5/k8s-fleetman-webapp-angular/src/app/vehicle.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release0-5/k8s-fleetman-webapp-angular/src/app/vehicle.service.spec.ts -------------------------------------------------------------------------------- /microservice-source-code/release0-5/k8s-fleetman-webapp-angular/src/app/vehicle.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release0-5/k8s-fleetman-webapp-angular/src/app/vehicle.service.ts -------------------------------------------------------------------------------- /microservice-source-code/release0-5/k8s-fleetman-webapp-angular/src/app/vehicle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release0-5/k8s-fleetman-webapp-angular/src/app/vehicle.ts -------------------------------------------------------------------------------- /microservice-source-code/release0-5/k8s-fleetman-webapp-angular/src/app/vehicles/vehicles.component.css: -------------------------------------------------------------------------------- 1 | table { 2 | border-bottom: 1px solid silver; 3 | } 4 | -------------------------------------------------------------------------------- /microservice-source-code/release0-5/k8s-fleetman-webapp-angular/src/app/vehicles/vehicles.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release0-5/k8s-fleetman-webapp-angular/src/app/vehicles/vehicles.component.html -------------------------------------------------------------------------------- /microservice-source-code/release0-5/k8s-fleetman-webapp-angular/src/app/vehicles/vehicles.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release0-5/k8s-fleetman-webapp-angular/src/app/vehicles/vehicles.component.spec.ts -------------------------------------------------------------------------------- /microservice-source-code/release0-5/k8s-fleetman-webapp-angular/src/app/vehicles/vehicles.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release0-5/k8s-fleetman-webapp-angular/src/app/vehicles/vehicles.component.ts -------------------------------------------------------------------------------- /microservice-source-code/release0-5/k8s-fleetman-webapp-angular/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /microservice-source-code/release0-5/k8s-fleetman-webapp-angular/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /microservice-source-code/release0-5/k8s-fleetman-webapp-angular/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release0-5/k8s-fleetman-webapp-angular/src/environments/environment.ts -------------------------------------------------------------------------------- /microservice-source-code/release0-5/k8s-fleetman-webapp-angular/src/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release0-5/k8s-fleetman-webapp-angular/src/favicon.png -------------------------------------------------------------------------------- /microservice-source-code/release0-5/k8s-fleetman-webapp-angular/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release0-5/k8s-fleetman-webapp-angular/src/index.html -------------------------------------------------------------------------------- /microservice-source-code/release0-5/k8s-fleetman-webapp-angular/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release0-5/k8s-fleetman-webapp-angular/src/main.ts -------------------------------------------------------------------------------- /microservice-source-code/release0-5/k8s-fleetman-webapp-angular/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release0-5/k8s-fleetman-webapp-angular/src/polyfills.ts -------------------------------------------------------------------------------- /microservice-source-code/release0-5/k8s-fleetman-webapp-angular/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release0-5/k8s-fleetman-webapp-angular/src/styles.css -------------------------------------------------------------------------------- /microservice-source-code/release0-5/k8s-fleetman-webapp-angular/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release0-5/k8s-fleetman-webapp-angular/src/test.ts -------------------------------------------------------------------------------- /microservice-source-code/release0-5/k8s-fleetman-webapp-angular/src/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release0-5/k8s-fleetman-webapp-angular/src/tsconfig.app.json -------------------------------------------------------------------------------- /microservice-source-code/release0-5/k8s-fleetman-webapp-angular/src/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release0-5/k8s-fleetman-webapp-angular/src/tsconfig.spec.json -------------------------------------------------------------------------------- /microservice-source-code/release0-5/k8s-fleetman-webapp-angular/src/typings.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release0-5/k8s-fleetman-webapp-angular/src/typings.d.ts -------------------------------------------------------------------------------- /microservice-source-code/release0-5/k8s-fleetman-webapp-angular/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release0-5/k8s-fleetman-webapp-angular/tsconfig.json -------------------------------------------------------------------------------- /microservice-source-code/release0-5/k8s-fleetman-webapp-angular/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release0-5/k8s-fleetman-webapp-angular/tslint.json -------------------------------------------------------------------------------- /microservice-source-code/release0/k8s-fleetman-webapp-angular/.dockerignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | -------------------------------------------------------------------------------- /microservice-source-code/release0/k8s-fleetman-webapp-angular/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release0/k8s-fleetman-webapp-angular/.editorconfig -------------------------------------------------------------------------------- /microservice-source-code/release0/k8s-fleetman-webapp-angular/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release0/k8s-fleetman-webapp-angular/.gitignore -------------------------------------------------------------------------------- /microservice-source-code/release0/k8s-fleetman-webapp-angular/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release0/k8s-fleetman-webapp-angular/Dockerfile -------------------------------------------------------------------------------- /microservice-source-code/release0/k8s-fleetman-webapp-angular/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release0/k8s-fleetman-webapp-angular/README.md -------------------------------------------------------------------------------- /microservice-source-code/release0/k8s-fleetman-webapp-angular/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release0/k8s-fleetman-webapp-angular/angular.json -------------------------------------------------------------------------------- /microservice-source-code/release0/k8s-fleetman-webapp-angular/e2e/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release0/k8s-fleetman-webapp-angular/e2e/app.e2e-spec.ts -------------------------------------------------------------------------------- /microservice-source-code/release0/k8s-fleetman-webapp-angular/e2e/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release0/k8s-fleetman-webapp-angular/e2e/app.po.ts -------------------------------------------------------------------------------- /microservice-source-code/release0/k8s-fleetman-webapp-angular/e2e/tsconfig.e2e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release0/k8s-fleetman-webapp-angular/e2e/tsconfig.e2e.json -------------------------------------------------------------------------------- /microservice-source-code/release0/k8s-fleetman-webapp-angular/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release0/k8s-fleetman-webapp-angular/karma.conf.js -------------------------------------------------------------------------------- /microservice-source-code/release0/k8s-fleetman-webapp-angular/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release0/k8s-fleetman-webapp-angular/nginx.conf -------------------------------------------------------------------------------- /microservice-source-code/release0/k8s-fleetman-webapp-angular/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release0/k8s-fleetman-webapp-angular/package-lock.json -------------------------------------------------------------------------------- /microservice-source-code/release0/k8s-fleetman-webapp-angular/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release0/k8s-fleetman-webapp-angular/package.json -------------------------------------------------------------------------------- /microservice-source-code/release0/k8s-fleetman-webapp-angular/protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release0/k8s-fleetman-webapp-angular/protractor.conf.js -------------------------------------------------------------------------------- /microservice-source-code/release0/k8s-fleetman-webapp-angular/src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /microservice-source-code/release0/k8s-fleetman-webapp-angular/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release0/k8s-fleetman-webapp-angular/src/app/app.component.html -------------------------------------------------------------------------------- /microservice-source-code/release0/k8s-fleetman-webapp-angular/src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release0/k8s-fleetman-webapp-angular/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /microservice-source-code/release0/k8s-fleetman-webapp-angular/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release0/k8s-fleetman-webapp-angular/src/app/app.component.ts -------------------------------------------------------------------------------- /microservice-source-code/release0/k8s-fleetman-webapp-angular/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release0/k8s-fleetman-webapp-angular/src/app/app.module.ts -------------------------------------------------------------------------------- /microservice-source-code/release0/k8s-fleetman-webapp-angular/src/app/header/header.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /microservice-source-code/release0/k8s-fleetman-webapp-angular/src/app/header/header.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release0/k8s-fleetman-webapp-angular/src/app/header/header.component.html -------------------------------------------------------------------------------- /microservice-source-code/release0/k8s-fleetman-webapp-angular/src/app/header/header.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release0/k8s-fleetman-webapp-angular/src/app/header/header.component.spec.ts -------------------------------------------------------------------------------- /microservice-source-code/release0/k8s-fleetman-webapp-angular/src/app/header/header.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release0/k8s-fleetman-webapp-angular/src/app/header/header.component.ts -------------------------------------------------------------------------------- /microservice-source-code/release0/k8s-fleetman-webapp-angular/src/app/map/map.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /microservice-source-code/release0/k8s-fleetman-webapp-angular/src/app/map/map.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release0/k8s-fleetman-webapp-angular/src/app/map/map.component.html -------------------------------------------------------------------------------- /microservice-source-code/release0/k8s-fleetman-webapp-angular/src/app/map/map.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release0/k8s-fleetman-webapp-angular/src/app/map/map.component.spec.ts -------------------------------------------------------------------------------- /microservice-source-code/release0/k8s-fleetman-webapp-angular/src/app/map/map.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release0/k8s-fleetman-webapp-angular/src/app/map/map.component.ts -------------------------------------------------------------------------------- /microservice-source-code/release0/k8s-fleetman-webapp-angular/src/app/vehicle.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release0/k8s-fleetman-webapp-angular/src/app/vehicle.service.spec.ts -------------------------------------------------------------------------------- /microservice-source-code/release0/k8s-fleetman-webapp-angular/src/app/vehicle.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release0/k8s-fleetman-webapp-angular/src/app/vehicle.service.ts -------------------------------------------------------------------------------- /microservice-source-code/release0/k8s-fleetman-webapp-angular/src/app/vehicle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release0/k8s-fleetman-webapp-angular/src/app/vehicle.ts -------------------------------------------------------------------------------- /microservice-source-code/release0/k8s-fleetman-webapp-angular/src/app/vehicles/vehicles.component.css: -------------------------------------------------------------------------------- 1 | table { 2 | border-bottom: 1px solid silver; 3 | } 4 | -------------------------------------------------------------------------------- /microservice-source-code/release0/k8s-fleetman-webapp-angular/src/app/vehicles/vehicles.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release0/k8s-fleetman-webapp-angular/src/app/vehicles/vehicles.component.html -------------------------------------------------------------------------------- /microservice-source-code/release0/k8s-fleetman-webapp-angular/src/app/vehicles/vehicles.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release0/k8s-fleetman-webapp-angular/src/app/vehicles/vehicles.component.spec.ts -------------------------------------------------------------------------------- /microservice-source-code/release0/k8s-fleetman-webapp-angular/src/app/vehicles/vehicles.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release0/k8s-fleetman-webapp-angular/src/app/vehicles/vehicles.component.ts -------------------------------------------------------------------------------- /microservice-source-code/release0/k8s-fleetman-webapp-angular/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /microservice-source-code/release0/k8s-fleetman-webapp-angular/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /microservice-source-code/release0/k8s-fleetman-webapp-angular/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release0/k8s-fleetman-webapp-angular/src/environments/environment.ts -------------------------------------------------------------------------------- /microservice-source-code/release0/k8s-fleetman-webapp-angular/src/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release0/k8s-fleetman-webapp-angular/src/favicon.png -------------------------------------------------------------------------------- /microservice-source-code/release0/k8s-fleetman-webapp-angular/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release0/k8s-fleetman-webapp-angular/src/index.html -------------------------------------------------------------------------------- /microservice-source-code/release0/k8s-fleetman-webapp-angular/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release0/k8s-fleetman-webapp-angular/src/main.ts -------------------------------------------------------------------------------- /microservice-source-code/release0/k8s-fleetman-webapp-angular/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release0/k8s-fleetman-webapp-angular/src/polyfills.ts -------------------------------------------------------------------------------- /microservice-source-code/release0/k8s-fleetman-webapp-angular/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release0/k8s-fleetman-webapp-angular/src/styles.css -------------------------------------------------------------------------------- /microservice-source-code/release0/k8s-fleetman-webapp-angular/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release0/k8s-fleetman-webapp-angular/src/test.ts -------------------------------------------------------------------------------- /microservice-source-code/release0/k8s-fleetman-webapp-angular/src/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release0/k8s-fleetman-webapp-angular/src/tsconfig.app.json -------------------------------------------------------------------------------- /microservice-source-code/release0/k8s-fleetman-webapp-angular/src/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release0/k8s-fleetman-webapp-angular/src/tsconfig.spec.json -------------------------------------------------------------------------------- /microservice-source-code/release0/k8s-fleetman-webapp-angular/src/typings.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release0/k8s-fleetman-webapp-angular/src/typings.d.ts -------------------------------------------------------------------------------- /microservice-source-code/release0/k8s-fleetman-webapp-angular/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release0/k8s-fleetman-webapp-angular/tsconfig.json -------------------------------------------------------------------------------- /microservice-source-code/release0/k8s-fleetman-webapp-angular/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release0/k8s-fleetman-webapp-angular/tslint.json -------------------------------------------------------------------------------- /microservice-source-code/release1/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release1/.gitignore -------------------------------------------------------------------------------- /microservice-source-code/release1/k8s-fleetman-position-simulator/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release1/k8s-fleetman-position-simulator/.gitignore -------------------------------------------------------------------------------- /microservice-source-code/release1/k8s-fleetman-position-simulator/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release1/k8s-fleetman-position-simulator/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /microservice-source-code/release1/k8s-fleetman-position-simulator/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release1/k8s-fleetman-position-simulator/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /microservice-source-code/release1/k8s-fleetman-position-simulator/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release1/k8s-fleetman-position-simulator/Dockerfile -------------------------------------------------------------------------------- /microservice-source-code/release1/k8s-fleetman-position-simulator/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release1/k8s-fleetman-position-simulator/LICENSE.md -------------------------------------------------------------------------------- /microservice-source-code/release1/k8s-fleetman-position-simulator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release1/k8s-fleetman-position-simulator/README.md -------------------------------------------------------------------------------- /microservice-source-code/release1/k8s-fleetman-position-simulator/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release1/k8s-fleetman-position-simulator/mvnw -------------------------------------------------------------------------------- /microservice-source-code/release1/k8s-fleetman-position-simulator/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release1/k8s-fleetman-position-simulator/mvnw.cmd -------------------------------------------------------------------------------- /microservice-source-code/release1/k8s-fleetman-position-simulator/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release1/k8s-fleetman-position-simulator/pom.xml -------------------------------------------------------------------------------- /microservice-source-code/release1/k8s-fleetman-position-simulator/src/main/resources/application-localhost.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release1/k8s-fleetman-position-simulator/src/main/resources/application-localhost.properties -------------------------------------------------------------------------------- /microservice-source-code/release1/k8s-fleetman-position-simulator/src/main/resources/generate_trackfile_from_gpx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release1/k8s-fleetman-position-simulator/src/main/resources/generate_trackfile_from_gpx -------------------------------------------------------------------------------- /microservice-source-code/release1/k8s-fleetman-position-simulator/src/main/resources/reverse_and_duplicate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release1/k8s-fleetman-position-simulator/src/main/resources/reverse_and_duplicate -------------------------------------------------------------------------------- /microservice-source-code/release1/k8s-fleetman-position-simulator/src/main/resources/speed_up_vehicle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release1/k8s-fleetman-position-simulator/src/main/resources/speed_up_vehicle -------------------------------------------------------------------------------- /microservice-source-code/release1/k8s-fleetman-position-simulator/src/main/resources/tracks/city_truck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release1/k8s-fleetman-position-simulator/src/main/resources/tracks/city_truck -------------------------------------------------------------------------------- /microservice-source-code/release1/k8s-fleetman-position-simulator/src/main/resources/tracks/dronfield_round: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release1/k8s-fleetman-position-simulator/src/main/resources/tracks/dronfield_round -------------------------------------------------------------------------------- /microservice-source-code/release1/k8s-fleetman-position-simulator/src/main/resources/tracks/dronfield_round_b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release1/k8s-fleetman-position-simulator/src/main/resources/tracks/dronfield_round_b -------------------------------------------------------------------------------- /microservice-source-code/release1/k8s-fleetman-position-simulator/src/main/resources/tracks/express_delivery1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release1/k8s-fleetman-position-simulator/src/main/resources/tracks/express_delivery1 -------------------------------------------------------------------------------- /microservice-source-code/release1/k8s-fleetman-position-simulator/src/main/resources/tracks/factory_run_a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release1/k8s-fleetman-position-simulator/src/main/resources/tracks/factory_run_a -------------------------------------------------------------------------------- /microservice-source-code/release1/k8s-fleetman-position-simulator/src/main/resources/tracks/factory_run_b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release1/k8s-fleetman-position-simulator/src/main/resources/tracks/factory_run_b -------------------------------------------------------------------------------- /microservice-source-code/release1/k8s-fleetman-position-simulator/src/main/resources/tracks/factory_run_c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release1/k8s-fleetman-position-simulator/src/main/resources/tracks/factory_run_c -------------------------------------------------------------------------------- /microservice-source-code/release1/k8s-fleetman-position-simulator/src/main/resources/tracks/factory_run_d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release1/k8s-fleetman-position-simulator/src/main/resources/tracks/factory_run_d -------------------------------------------------------------------------------- /microservice-source-code/release1/k8s-fleetman-position-simulator/src/main/resources/tracks/factory_run_e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release1/k8s-fleetman-position-simulator/src/main/resources/tracks/factory_run_e -------------------------------------------------------------------------------- /microservice-source-code/release1/k8s-fleetman-position-simulator/src/main/resources/tracks/factory_run_f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release1/k8s-fleetman-position-simulator/src/main/resources/tracks/factory_run_f -------------------------------------------------------------------------------- /microservice-source-code/release1/k8s-fleetman-position-simulator/src/main/resources/tracks/factory_run_g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release1/k8s-fleetman-position-simulator/src/main/resources/tracks/factory_run_g -------------------------------------------------------------------------------- /microservice-source-code/release1/k8s-fleetman-position-simulator/src/main/resources/tracks/factory_run_h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release1/k8s-fleetman-position-simulator/src/main/resources/tracks/factory_run_h -------------------------------------------------------------------------------- /microservice-source-code/release1/k8s-fleetman-position-simulator/src/main/resources/tracks/huddersfield_truck_a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release1/k8s-fleetman-position-simulator/src/main/resources/tracks/huddersfield_truck_a -------------------------------------------------------------------------------- /microservice-source-code/release1/k8s-fleetman-position-simulator/src/main/resources/tracks/huddersfield_truck_b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release1/k8s-fleetman-position-simulator/src/main/resources/tracks/huddersfield_truck_b -------------------------------------------------------------------------------- /microservice-source-code/release1/k8s-fleetman-position-simulator/src/main/resources/tracks/local_deliveries_a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release1/k8s-fleetman-position-simulator/src/main/resources/tracks/local_deliveries_a -------------------------------------------------------------------------------- /microservice-source-code/release1/k8s-fleetman-position-simulator/src/main/resources/tracks/local_deliveries_b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release1/k8s-fleetman-position-simulator/src/main/resources/tracks/local_deliveries_b -------------------------------------------------------------------------------- /microservice-source-code/release1/k8s-fleetman-position-simulator/src/main/resources/tracks/london_riverside: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release1/k8s-fleetman-position-simulator/src/main/resources/tracks/london_riverside -------------------------------------------------------------------------------- /microservice-source-code/release1/k8s-fleetman-position-simulator/src/main/resources/tracks/secret_service_a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release1/k8s-fleetman-position-simulator/src/main/resources/tracks/secret_service_a -------------------------------------------------------------------------------- /microservice-source-code/release1/k8s-fleetman-position-simulator/src/main/resources/tracks/secret_service_b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release1/k8s-fleetman-position-simulator/src/main/resources/tracks/secret_service_b -------------------------------------------------------------------------------- /microservice-source-code/release1/k8s-fleetman-position-simulator/src/main/resources/tracks/secret_service_c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release1/k8s-fleetman-position-simulator/src/main/resources/tracks/secret_service_c -------------------------------------------------------------------------------- /microservice-source-code/release1/k8s-fleetman-position-simulator/src/main/resources/tracks/secret_service_d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release1/k8s-fleetman-position-simulator/src/main/resources/tracks/secret_service_d -------------------------------------------------------------------------------- /microservice-source-code/release1/k8s-fleetman-position-simulator/src/main/resources/tracks/secret_service_e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release1/k8s-fleetman-position-simulator/src/main/resources/tracks/secret_service_e -------------------------------------------------------------------------------- /microservice-source-code/release1/k8s-fleetman-position-simulator/src/main/resources/tracks/secret_service_f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release1/k8s-fleetman-position-simulator/src/main/resources/tracks/secret_service_f -------------------------------------------------------------------------------- /microservice-source-code/release1/k8s-fleetman-position-simulator/src/main/resources/tracks/sheffield_truck_a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release1/k8s-fleetman-position-simulator/src/main/resources/tracks/sheffield_truck_a -------------------------------------------------------------------------------- /microservice-source-code/release1/k8s-fleetman-position-simulator/src/main/resources/tracks/sheffield_truck_b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release1/k8s-fleetman-position-simulator/src/main/resources/tracks/sheffield_truck_b -------------------------------------------------------------------------------- /microservice-source-code/release1/k8s-fleetman-position-simulator/src/main/resources/tracks/sheffield_truck_c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release1/k8s-fleetman-position-simulator/src/main/resources/tracks/sheffield_truck_c -------------------------------------------------------------------------------- /microservice-source-code/release1/k8s-fleetman-position-simulator/src/main/resources/tracks/sheffield_truck_d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release1/k8s-fleetman-position-simulator/src/main/resources/tracks/sheffield_truck_d -------------------------------------------------------------------------------- /microservice-source-code/release1/k8s-fleetman-position-simulator/src/main/resources/tracks/small_parcel_service1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release1/k8s-fleetman-position-simulator/src/main/resources/tracks/small_parcel_service1 -------------------------------------------------------------------------------- /microservice-source-code/release1/k8s-fleetman-position-simulator/src/main/resources/tracks/top_secret: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release1/k8s-fleetman-position-simulator/src/main/resources/tracks/top_secret -------------------------------------------------------------------------------- /microservice-source-code/release1/k8s-fleetman-position-simulator/src/main/resources/tracks/university_internal_mail_a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release1/k8s-fleetman-position-simulator/src/main/resources/tracks/university_internal_mail_a -------------------------------------------------------------------------------- /microservice-source-code/release1/k8s-fleetman-position-simulator/src/main/resources/tracks/university_internal_mail_b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release1/k8s-fleetman-position-simulator/src/main/resources/tracks/university_internal_mail_b -------------------------------------------------------------------------------- /microservice-source-code/release1/k8s-fleetman-position-simulator/src/main/resources/tracks/university_internal_mail_c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release1/k8s-fleetman-position-simulator/src/main/resources/tracks/university_internal_mail_c -------------------------------------------------------------------------------- /microservice-source-code/release1/k8s-fleetman-position-simulator/src/main/resources/tracks/university_internal_mail_d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release1/k8s-fleetman-position-simulator/src/main/resources/tracks/university_internal_mail_d -------------------------------------------------------------------------------- /microservice-source-code/release1/k8s-fleetman-position-simulator/src/main/resources/tracks/university_internal_mail_e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release1/k8s-fleetman-position-simulator/src/main/resources/tracks/university_internal_mail_e -------------------------------------------------------------------------------- /microservice-source-code/release1/k8s-fleetman-position-simulator/src/main/resources/tracks/university_internal_mail_f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release1/k8s-fleetman-position-simulator/src/main/resources/tracks/university_internal_mail_f -------------------------------------------------------------------------------- /microservice-source-code/release1/k8s-fleetman-position-simulator/src/main/resources/tracks/university_internal_mail_g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release1/k8s-fleetman-position-simulator/src/main/resources/tracks/university_internal_mail_g -------------------------------------------------------------------------------- /microservice-source-code/release1/k8s-fleetman-position-simulator/src/main/resources/tracks/village_truck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release1/k8s-fleetman-position-simulator/src/main/resources/tracks/village_truck -------------------------------------------------------------------------------- /microservice-source-code/release1/k8s-fleetman-position-tracker/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release1/k8s-fleetman-position-tracker/.gitignore -------------------------------------------------------------------------------- /microservice-source-code/release1/k8s-fleetman-position-tracker/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release1/k8s-fleetman-position-tracker/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /microservice-source-code/release1/k8s-fleetman-position-tracker/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release1/k8s-fleetman-position-tracker/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /microservice-source-code/release1/k8s-fleetman-position-tracker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release1/k8s-fleetman-position-tracker/Dockerfile -------------------------------------------------------------------------------- /microservice-source-code/release1/k8s-fleetman-position-tracker/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release1/k8s-fleetman-position-tracker/LICENSE -------------------------------------------------------------------------------- /microservice-source-code/release1/k8s-fleetman-position-tracker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release1/k8s-fleetman-position-tracker/README.md -------------------------------------------------------------------------------- /microservice-source-code/release1/k8s-fleetman-position-tracker/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release1/k8s-fleetman-position-tracker/mvnw -------------------------------------------------------------------------------- /microservice-source-code/release1/k8s-fleetman-position-tracker/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release1/k8s-fleetman-position-tracker/mvnw.cmd -------------------------------------------------------------------------------- /microservice-source-code/release1/k8s-fleetman-position-tracker/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release1/k8s-fleetman-position-tracker/pom.xml -------------------------------------------------------------------------------- /microservice-source-code/release1/k8s-fleetman-position-tracker/src/main/resources/application-localhost.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release1/k8s-fleetman-position-tracker/src/main/resources/application-localhost.properties -------------------------------------------------------------------------------- /microservice-source-code/release1/k8s-fleetman-position-tracker/src/main/resources/application-standalone.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release1/k8s-fleetman-position-tracker/src/main/resources/application-standalone.properties -------------------------------------------------------------------------------- /microservice-source-code/release1/k8s-fleetman-position-tracker/src/test/java/com/virtualpairprogrammers/TestUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release1/k8s-fleetman-position-tracker/src/test/java/com/virtualpairprogrammers/TestUtils.java -------------------------------------------------------------------------------- /microservice-source-code/release1/k8s-fleetman-queue/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release1/k8s-fleetman-queue/Dockerfile -------------------------------------------------------------------------------- /microservice-source-code/release1/k8s-fleetman-queue/README.md: -------------------------------------------------------------------------------- 1 | # docker-netflix-fleetman-queue 2 | -------------------------------------------------------------------------------- /microservice-source-code/release1/k8s-fleetman-webapp-angular/.dockerignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | -------------------------------------------------------------------------------- /microservice-source-code/release1/k8s-fleetman-webapp-angular/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release1/k8s-fleetman-webapp-angular/.editorconfig -------------------------------------------------------------------------------- /microservice-source-code/release1/k8s-fleetman-webapp-angular/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release1/k8s-fleetman-webapp-angular/.gitignore -------------------------------------------------------------------------------- /microservice-source-code/release1/k8s-fleetman-webapp-angular/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release1/k8s-fleetman-webapp-angular/Dockerfile -------------------------------------------------------------------------------- /microservice-source-code/release1/k8s-fleetman-webapp-angular/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release1/k8s-fleetman-webapp-angular/README.md -------------------------------------------------------------------------------- /microservice-source-code/release1/k8s-fleetman-webapp-angular/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release1/k8s-fleetman-webapp-angular/angular.json -------------------------------------------------------------------------------- /microservice-source-code/release1/k8s-fleetman-webapp-angular/e2e/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release1/k8s-fleetman-webapp-angular/e2e/app.e2e-spec.ts -------------------------------------------------------------------------------- /microservice-source-code/release1/k8s-fleetman-webapp-angular/e2e/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release1/k8s-fleetman-webapp-angular/e2e/app.po.ts -------------------------------------------------------------------------------- /microservice-source-code/release1/k8s-fleetman-webapp-angular/e2e/tsconfig.e2e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release1/k8s-fleetman-webapp-angular/e2e/tsconfig.e2e.json -------------------------------------------------------------------------------- /microservice-source-code/release1/k8s-fleetman-webapp-angular/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release1/k8s-fleetman-webapp-angular/karma.conf.js -------------------------------------------------------------------------------- /microservice-source-code/release1/k8s-fleetman-webapp-angular/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release1/k8s-fleetman-webapp-angular/nginx.conf -------------------------------------------------------------------------------- /microservice-source-code/release1/k8s-fleetman-webapp-angular/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release1/k8s-fleetman-webapp-angular/package-lock.json -------------------------------------------------------------------------------- /microservice-source-code/release1/k8s-fleetman-webapp-angular/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release1/k8s-fleetman-webapp-angular/package.json -------------------------------------------------------------------------------- /microservice-source-code/release1/k8s-fleetman-webapp-angular/protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release1/k8s-fleetman-webapp-angular/protractor.conf.js -------------------------------------------------------------------------------- /microservice-source-code/release1/k8s-fleetman-webapp-angular/src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /microservice-source-code/release1/k8s-fleetman-webapp-angular/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release1/k8s-fleetman-webapp-angular/src/app/app.component.html -------------------------------------------------------------------------------- /microservice-source-code/release1/k8s-fleetman-webapp-angular/src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release1/k8s-fleetman-webapp-angular/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /microservice-source-code/release1/k8s-fleetman-webapp-angular/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release1/k8s-fleetman-webapp-angular/src/app/app.component.ts -------------------------------------------------------------------------------- /microservice-source-code/release1/k8s-fleetman-webapp-angular/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release1/k8s-fleetman-webapp-angular/src/app/app.module.ts -------------------------------------------------------------------------------- /microservice-source-code/release1/k8s-fleetman-webapp-angular/src/app/header/header.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /microservice-source-code/release1/k8s-fleetman-webapp-angular/src/app/header/header.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release1/k8s-fleetman-webapp-angular/src/app/header/header.component.html -------------------------------------------------------------------------------- /microservice-source-code/release1/k8s-fleetman-webapp-angular/src/app/header/header.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release1/k8s-fleetman-webapp-angular/src/app/header/header.component.spec.ts -------------------------------------------------------------------------------- /microservice-source-code/release1/k8s-fleetman-webapp-angular/src/app/header/header.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release1/k8s-fleetman-webapp-angular/src/app/header/header.component.ts -------------------------------------------------------------------------------- /microservice-source-code/release1/k8s-fleetman-webapp-angular/src/app/map/map.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /microservice-source-code/release1/k8s-fleetman-webapp-angular/src/app/map/map.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release1/k8s-fleetman-webapp-angular/src/app/map/map.component.html -------------------------------------------------------------------------------- /microservice-source-code/release1/k8s-fleetman-webapp-angular/src/app/map/map.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release1/k8s-fleetman-webapp-angular/src/app/map/map.component.spec.ts -------------------------------------------------------------------------------- /microservice-source-code/release1/k8s-fleetman-webapp-angular/src/app/map/map.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release1/k8s-fleetman-webapp-angular/src/app/map/map.component.ts -------------------------------------------------------------------------------- /microservice-source-code/release1/k8s-fleetman-webapp-angular/src/app/vehicle.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release1/k8s-fleetman-webapp-angular/src/app/vehicle.service.spec.ts -------------------------------------------------------------------------------- /microservice-source-code/release1/k8s-fleetman-webapp-angular/src/app/vehicle.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release1/k8s-fleetman-webapp-angular/src/app/vehicle.service.ts -------------------------------------------------------------------------------- /microservice-source-code/release1/k8s-fleetman-webapp-angular/src/app/vehicle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release1/k8s-fleetman-webapp-angular/src/app/vehicle.ts -------------------------------------------------------------------------------- /microservice-source-code/release1/k8s-fleetman-webapp-angular/src/app/vehicles/vehicles.component.css: -------------------------------------------------------------------------------- 1 | table { 2 | border-bottom: 1px solid silver; 3 | } 4 | -------------------------------------------------------------------------------- /microservice-source-code/release1/k8s-fleetman-webapp-angular/src/app/vehicles/vehicles.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release1/k8s-fleetman-webapp-angular/src/app/vehicles/vehicles.component.html -------------------------------------------------------------------------------- /microservice-source-code/release1/k8s-fleetman-webapp-angular/src/app/vehicles/vehicles.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release1/k8s-fleetman-webapp-angular/src/app/vehicles/vehicles.component.spec.ts -------------------------------------------------------------------------------- /microservice-source-code/release1/k8s-fleetman-webapp-angular/src/app/vehicles/vehicles.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release1/k8s-fleetman-webapp-angular/src/app/vehicles/vehicles.component.ts -------------------------------------------------------------------------------- /microservice-source-code/release1/k8s-fleetman-webapp-angular/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /microservice-source-code/release1/k8s-fleetman-webapp-angular/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /microservice-source-code/release1/k8s-fleetman-webapp-angular/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release1/k8s-fleetman-webapp-angular/src/environments/environment.ts -------------------------------------------------------------------------------- /microservice-source-code/release1/k8s-fleetman-webapp-angular/src/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release1/k8s-fleetman-webapp-angular/src/favicon.png -------------------------------------------------------------------------------- /microservice-source-code/release1/k8s-fleetman-webapp-angular/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release1/k8s-fleetman-webapp-angular/src/index.html -------------------------------------------------------------------------------- /microservice-source-code/release1/k8s-fleetman-webapp-angular/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release1/k8s-fleetman-webapp-angular/src/main.ts -------------------------------------------------------------------------------- /microservice-source-code/release1/k8s-fleetman-webapp-angular/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release1/k8s-fleetman-webapp-angular/src/polyfills.ts -------------------------------------------------------------------------------- /microservice-source-code/release1/k8s-fleetman-webapp-angular/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release1/k8s-fleetman-webapp-angular/src/styles.css -------------------------------------------------------------------------------- /microservice-source-code/release1/k8s-fleetman-webapp-angular/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release1/k8s-fleetman-webapp-angular/src/test.ts -------------------------------------------------------------------------------- /microservice-source-code/release1/k8s-fleetman-webapp-angular/src/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release1/k8s-fleetman-webapp-angular/src/tsconfig.app.json -------------------------------------------------------------------------------- /microservice-source-code/release1/k8s-fleetman-webapp-angular/src/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release1/k8s-fleetman-webapp-angular/src/tsconfig.spec.json -------------------------------------------------------------------------------- /microservice-source-code/release1/k8s-fleetman-webapp-angular/src/typings.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release1/k8s-fleetman-webapp-angular/src/typings.d.ts -------------------------------------------------------------------------------- /microservice-source-code/release1/k8s-fleetman-webapp-angular/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release1/k8s-fleetman-webapp-angular/tsconfig.json -------------------------------------------------------------------------------- /microservice-source-code/release1/k8s-fleetman-webapp-angular/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release1/k8s-fleetman-webapp-angular/tslint.json -------------------------------------------------------------------------------- /microservice-source-code/release2/k8s-fleetman-api-gateway/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release2/k8s-fleetman-api-gateway/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /microservice-source-code/release2/k8s-fleetman-api-gateway/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release2/k8s-fleetman-api-gateway/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /microservice-source-code/release2/k8s-fleetman-api-gateway/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release2/k8s-fleetman-api-gateway/Dockerfile -------------------------------------------------------------------------------- /microservice-source-code/release2/k8s-fleetman-api-gateway/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release2/k8s-fleetman-api-gateway/LICENSE -------------------------------------------------------------------------------- /microservice-source-code/release2/k8s-fleetman-api-gateway/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release2/k8s-fleetman-api-gateway/README.md -------------------------------------------------------------------------------- /microservice-source-code/release2/k8s-fleetman-api-gateway/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release2/k8s-fleetman-api-gateway/mvnw -------------------------------------------------------------------------------- /microservice-source-code/release2/k8s-fleetman-api-gateway/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release2/k8s-fleetman-api-gateway/mvnw.cmd -------------------------------------------------------------------------------- /microservice-source-code/release2/k8s-fleetman-api-gateway/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release2/k8s-fleetman-api-gateway/pom.xml -------------------------------------------------------------------------------- /microservice-source-code/release2/k8s-fleetman-api-gateway/src/main/resources/application-local-microservice.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release2/k8s-fleetman-api-gateway/src/main/resources/application-local-microservice.properties -------------------------------------------------------------------------------- /microservice-source-code/release2/k8s-fleetman-api-gateway/src/main/resources/application-localhost.properties: -------------------------------------------------------------------------------- 1 | position-tracker-url=http://localhost:8090 2 | server.port = 8080 3 | -------------------------------------------------------------------------------- /microservice-source-code/release2/k8s-fleetman-position-simulator/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release2/k8s-fleetman-position-simulator/.gitignore -------------------------------------------------------------------------------- /microservice-source-code/release2/k8s-fleetman-position-simulator/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release2/k8s-fleetman-position-simulator/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /microservice-source-code/release2/k8s-fleetman-position-simulator/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release2/k8s-fleetman-position-simulator/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /microservice-source-code/release2/k8s-fleetman-position-simulator/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release2/k8s-fleetman-position-simulator/Dockerfile -------------------------------------------------------------------------------- /microservice-source-code/release2/k8s-fleetman-position-simulator/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release2/k8s-fleetman-position-simulator/LICENSE.md -------------------------------------------------------------------------------- /microservice-source-code/release2/k8s-fleetman-position-simulator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release2/k8s-fleetman-position-simulator/README.md -------------------------------------------------------------------------------- /microservice-source-code/release2/k8s-fleetman-position-simulator/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release2/k8s-fleetman-position-simulator/mvnw -------------------------------------------------------------------------------- /microservice-source-code/release2/k8s-fleetman-position-simulator/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release2/k8s-fleetman-position-simulator/mvnw.cmd -------------------------------------------------------------------------------- /microservice-source-code/release2/k8s-fleetman-position-simulator/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release2/k8s-fleetman-position-simulator/pom.xml -------------------------------------------------------------------------------- /microservice-source-code/release2/k8s-fleetman-position-simulator/src/main/resources/application-localhost.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release2/k8s-fleetman-position-simulator/src/main/resources/application-localhost.properties -------------------------------------------------------------------------------- /microservice-source-code/release2/k8s-fleetman-position-simulator/src/main/resources/generate_trackfile_from_gpx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release2/k8s-fleetman-position-simulator/src/main/resources/generate_trackfile_from_gpx -------------------------------------------------------------------------------- /microservice-source-code/release2/k8s-fleetman-position-simulator/src/main/resources/reverse_and_duplicate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release2/k8s-fleetman-position-simulator/src/main/resources/reverse_and_duplicate -------------------------------------------------------------------------------- /microservice-source-code/release2/k8s-fleetman-position-simulator/src/main/resources/speed_up_vehicle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release2/k8s-fleetman-position-simulator/src/main/resources/speed_up_vehicle -------------------------------------------------------------------------------- /microservice-source-code/release2/k8s-fleetman-position-simulator/src/main/resources/tracks/city_truck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release2/k8s-fleetman-position-simulator/src/main/resources/tracks/city_truck -------------------------------------------------------------------------------- /microservice-source-code/release2/k8s-fleetman-position-simulator/src/main/resources/tracks/dronfield_round: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release2/k8s-fleetman-position-simulator/src/main/resources/tracks/dronfield_round -------------------------------------------------------------------------------- /microservice-source-code/release2/k8s-fleetman-position-simulator/src/main/resources/tracks/dronfield_round_b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release2/k8s-fleetman-position-simulator/src/main/resources/tracks/dronfield_round_b -------------------------------------------------------------------------------- /microservice-source-code/release2/k8s-fleetman-position-simulator/src/main/resources/tracks/express_delivery1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release2/k8s-fleetman-position-simulator/src/main/resources/tracks/express_delivery1 -------------------------------------------------------------------------------- /microservice-source-code/release2/k8s-fleetman-position-simulator/src/main/resources/tracks/factory_run_a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release2/k8s-fleetman-position-simulator/src/main/resources/tracks/factory_run_a -------------------------------------------------------------------------------- /microservice-source-code/release2/k8s-fleetman-position-simulator/src/main/resources/tracks/factory_run_b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release2/k8s-fleetman-position-simulator/src/main/resources/tracks/factory_run_b -------------------------------------------------------------------------------- /microservice-source-code/release2/k8s-fleetman-position-simulator/src/main/resources/tracks/factory_run_c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release2/k8s-fleetman-position-simulator/src/main/resources/tracks/factory_run_c -------------------------------------------------------------------------------- /microservice-source-code/release2/k8s-fleetman-position-simulator/src/main/resources/tracks/factory_run_d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release2/k8s-fleetman-position-simulator/src/main/resources/tracks/factory_run_d -------------------------------------------------------------------------------- /microservice-source-code/release2/k8s-fleetman-position-simulator/src/main/resources/tracks/factory_run_e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release2/k8s-fleetman-position-simulator/src/main/resources/tracks/factory_run_e -------------------------------------------------------------------------------- /microservice-source-code/release2/k8s-fleetman-position-simulator/src/main/resources/tracks/factory_run_f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release2/k8s-fleetman-position-simulator/src/main/resources/tracks/factory_run_f -------------------------------------------------------------------------------- /microservice-source-code/release2/k8s-fleetman-position-simulator/src/main/resources/tracks/factory_run_g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release2/k8s-fleetman-position-simulator/src/main/resources/tracks/factory_run_g -------------------------------------------------------------------------------- /microservice-source-code/release2/k8s-fleetman-position-simulator/src/main/resources/tracks/factory_run_h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release2/k8s-fleetman-position-simulator/src/main/resources/tracks/factory_run_h -------------------------------------------------------------------------------- /microservice-source-code/release2/k8s-fleetman-position-simulator/src/main/resources/tracks/huddersfield_truck_a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release2/k8s-fleetman-position-simulator/src/main/resources/tracks/huddersfield_truck_a -------------------------------------------------------------------------------- /microservice-source-code/release2/k8s-fleetman-position-simulator/src/main/resources/tracks/huddersfield_truck_b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release2/k8s-fleetman-position-simulator/src/main/resources/tracks/huddersfield_truck_b -------------------------------------------------------------------------------- /microservice-source-code/release2/k8s-fleetman-position-simulator/src/main/resources/tracks/local_deliveries_a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release2/k8s-fleetman-position-simulator/src/main/resources/tracks/local_deliveries_a -------------------------------------------------------------------------------- /microservice-source-code/release2/k8s-fleetman-position-simulator/src/main/resources/tracks/local_deliveries_b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release2/k8s-fleetman-position-simulator/src/main/resources/tracks/local_deliveries_b -------------------------------------------------------------------------------- /microservice-source-code/release2/k8s-fleetman-position-simulator/src/main/resources/tracks/london_riverside: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release2/k8s-fleetman-position-simulator/src/main/resources/tracks/london_riverside -------------------------------------------------------------------------------- /microservice-source-code/release2/k8s-fleetman-position-simulator/src/main/resources/tracks/secret_service_a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release2/k8s-fleetman-position-simulator/src/main/resources/tracks/secret_service_a -------------------------------------------------------------------------------- /microservice-source-code/release2/k8s-fleetman-position-simulator/src/main/resources/tracks/secret_service_b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release2/k8s-fleetman-position-simulator/src/main/resources/tracks/secret_service_b -------------------------------------------------------------------------------- /microservice-source-code/release2/k8s-fleetman-position-simulator/src/main/resources/tracks/secret_service_c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release2/k8s-fleetman-position-simulator/src/main/resources/tracks/secret_service_c -------------------------------------------------------------------------------- /microservice-source-code/release2/k8s-fleetman-position-simulator/src/main/resources/tracks/secret_service_d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release2/k8s-fleetman-position-simulator/src/main/resources/tracks/secret_service_d -------------------------------------------------------------------------------- /microservice-source-code/release2/k8s-fleetman-position-simulator/src/main/resources/tracks/secret_service_e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release2/k8s-fleetman-position-simulator/src/main/resources/tracks/secret_service_e -------------------------------------------------------------------------------- /microservice-source-code/release2/k8s-fleetman-position-simulator/src/main/resources/tracks/secret_service_f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release2/k8s-fleetman-position-simulator/src/main/resources/tracks/secret_service_f -------------------------------------------------------------------------------- /microservice-source-code/release2/k8s-fleetman-position-simulator/src/main/resources/tracks/sheffield_truck_a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release2/k8s-fleetman-position-simulator/src/main/resources/tracks/sheffield_truck_a -------------------------------------------------------------------------------- /microservice-source-code/release2/k8s-fleetman-position-simulator/src/main/resources/tracks/sheffield_truck_b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release2/k8s-fleetman-position-simulator/src/main/resources/tracks/sheffield_truck_b -------------------------------------------------------------------------------- /microservice-source-code/release2/k8s-fleetman-position-simulator/src/main/resources/tracks/sheffield_truck_c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release2/k8s-fleetman-position-simulator/src/main/resources/tracks/sheffield_truck_c -------------------------------------------------------------------------------- /microservice-source-code/release2/k8s-fleetman-position-simulator/src/main/resources/tracks/sheffield_truck_d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release2/k8s-fleetman-position-simulator/src/main/resources/tracks/sheffield_truck_d -------------------------------------------------------------------------------- /microservice-source-code/release2/k8s-fleetman-position-simulator/src/main/resources/tracks/small_parcel_service1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release2/k8s-fleetman-position-simulator/src/main/resources/tracks/small_parcel_service1 -------------------------------------------------------------------------------- /microservice-source-code/release2/k8s-fleetman-position-simulator/src/main/resources/tracks/top_secret: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release2/k8s-fleetman-position-simulator/src/main/resources/tracks/top_secret -------------------------------------------------------------------------------- /microservice-source-code/release2/k8s-fleetman-position-simulator/src/main/resources/tracks/university_internal_mail_a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release2/k8s-fleetman-position-simulator/src/main/resources/tracks/university_internal_mail_a -------------------------------------------------------------------------------- /microservice-source-code/release2/k8s-fleetman-position-simulator/src/main/resources/tracks/university_internal_mail_b: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release2/k8s-fleetman-position-simulator/src/main/resources/tracks/university_internal_mail_b -------------------------------------------------------------------------------- /microservice-source-code/release2/k8s-fleetman-position-simulator/src/main/resources/tracks/university_internal_mail_c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release2/k8s-fleetman-position-simulator/src/main/resources/tracks/university_internal_mail_c -------------------------------------------------------------------------------- /microservice-source-code/release2/k8s-fleetman-position-simulator/src/main/resources/tracks/university_internal_mail_d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release2/k8s-fleetman-position-simulator/src/main/resources/tracks/university_internal_mail_d -------------------------------------------------------------------------------- /microservice-source-code/release2/k8s-fleetman-position-simulator/src/main/resources/tracks/university_internal_mail_e: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release2/k8s-fleetman-position-simulator/src/main/resources/tracks/university_internal_mail_e -------------------------------------------------------------------------------- /microservice-source-code/release2/k8s-fleetman-position-simulator/src/main/resources/tracks/university_internal_mail_f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release2/k8s-fleetman-position-simulator/src/main/resources/tracks/university_internal_mail_f -------------------------------------------------------------------------------- /microservice-source-code/release2/k8s-fleetman-position-simulator/src/main/resources/tracks/university_internal_mail_g: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release2/k8s-fleetman-position-simulator/src/main/resources/tracks/university_internal_mail_g -------------------------------------------------------------------------------- /microservice-source-code/release2/k8s-fleetman-position-simulator/src/main/resources/tracks/village_truck: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release2/k8s-fleetman-position-simulator/src/main/resources/tracks/village_truck -------------------------------------------------------------------------------- /microservice-source-code/release2/k8s-fleetman-position-tracker/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release2/k8s-fleetman-position-tracker/.gitignore -------------------------------------------------------------------------------- /microservice-source-code/release2/k8s-fleetman-position-tracker/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release2/k8s-fleetman-position-tracker/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /microservice-source-code/release2/k8s-fleetman-position-tracker/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release2/k8s-fleetman-position-tracker/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /microservice-source-code/release2/k8s-fleetman-position-tracker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release2/k8s-fleetman-position-tracker/Dockerfile -------------------------------------------------------------------------------- /microservice-source-code/release2/k8s-fleetman-position-tracker/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release2/k8s-fleetman-position-tracker/LICENSE -------------------------------------------------------------------------------- /microservice-source-code/release2/k8s-fleetman-position-tracker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release2/k8s-fleetman-position-tracker/README.md -------------------------------------------------------------------------------- /microservice-source-code/release2/k8s-fleetman-position-tracker/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release2/k8s-fleetman-position-tracker/mvnw -------------------------------------------------------------------------------- /microservice-source-code/release2/k8s-fleetman-position-tracker/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release2/k8s-fleetman-position-tracker/mvnw.cmd -------------------------------------------------------------------------------- /microservice-source-code/release2/k8s-fleetman-position-tracker/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release2/k8s-fleetman-position-tracker/pom.xml -------------------------------------------------------------------------------- /microservice-source-code/release2/k8s-fleetman-position-tracker/src/main/resources/application-localhost.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release2/k8s-fleetman-position-tracker/src/main/resources/application-localhost.properties -------------------------------------------------------------------------------- /microservice-source-code/release2/k8s-fleetman-position-tracker/src/main/resources/application-standalone.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release2/k8s-fleetman-position-tracker/src/main/resources/application-standalone.properties -------------------------------------------------------------------------------- /microservice-source-code/release2/k8s-fleetman-position-tracker/src/test/java/com/virtualpairprogrammers/TestUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release2/k8s-fleetman-position-tracker/src/test/java/com/virtualpairprogrammers/TestUtils.java -------------------------------------------------------------------------------- /microservice-source-code/release2/k8s-fleetman-queue/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release2/k8s-fleetman-queue/Dockerfile -------------------------------------------------------------------------------- /microservice-source-code/release2/k8s-fleetman-queue/README.md: -------------------------------------------------------------------------------- 1 | # docker-netflix-fleetman-queue 2 | -------------------------------------------------------------------------------- /microservice-source-code/release2/k8s-fleetman-webapp-angular/.dockerignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | -------------------------------------------------------------------------------- /microservice-source-code/release2/k8s-fleetman-webapp-angular/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release2/k8s-fleetman-webapp-angular/.editorconfig -------------------------------------------------------------------------------- /microservice-source-code/release2/k8s-fleetman-webapp-angular/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release2/k8s-fleetman-webapp-angular/.gitignore -------------------------------------------------------------------------------- /microservice-source-code/release2/k8s-fleetman-webapp-angular/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release2/k8s-fleetman-webapp-angular/Dockerfile -------------------------------------------------------------------------------- /microservice-source-code/release2/k8s-fleetman-webapp-angular/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release2/k8s-fleetman-webapp-angular/README.md -------------------------------------------------------------------------------- /microservice-source-code/release2/k8s-fleetman-webapp-angular/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release2/k8s-fleetman-webapp-angular/angular.json -------------------------------------------------------------------------------- /microservice-source-code/release2/k8s-fleetman-webapp-angular/e2e/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release2/k8s-fleetman-webapp-angular/e2e/app.e2e-spec.ts -------------------------------------------------------------------------------- /microservice-source-code/release2/k8s-fleetman-webapp-angular/e2e/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release2/k8s-fleetman-webapp-angular/e2e/app.po.ts -------------------------------------------------------------------------------- /microservice-source-code/release2/k8s-fleetman-webapp-angular/e2e/tsconfig.e2e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release2/k8s-fleetman-webapp-angular/e2e/tsconfig.e2e.json -------------------------------------------------------------------------------- /microservice-source-code/release2/k8s-fleetman-webapp-angular/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release2/k8s-fleetman-webapp-angular/karma.conf.js -------------------------------------------------------------------------------- /microservice-source-code/release2/k8s-fleetman-webapp-angular/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release2/k8s-fleetman-webapp-angular/nginx.conf -------------------------------------------------------------------------------- /microservice-source-code/release2/k8s-fleetman-webapp-angular/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release2/k8s-fleetman-webapp-angular/package-lock.json -------------------------------------------------------------------------------- /microservice-source-code/release2/k8s-fleetman-webapp-angular/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release2/k8s-fleetman-webapp-angular/package.json -------------------------------------------------------------------------------- /microservice-source-code/release2/k8s-fleetman-webapp-angular/protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release2/k8s-fleetman-webapp-angular/protractor.conf.js -------------------------------------------------------------------------------- /microservice-source-code/release2/k8s-fleetman-webapp-angular/src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /microservice-source-code/release2/k8s-fleetman-webapp-angular/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release2/k8s-fleetman-webapp-angular/src/app/app.component.html -------------------------------------------------------------------------------- /microservice-source-code/release2/k8s-fleetman-webapp-angular/src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release2/k8s-fleetman-webapp-angular/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /microservice-source-code/release2/k8s-fleetman-webapp-angular/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release2/k8s-fleetman-webapp-angular/src/app/app.component.ts -------------------------------------------------------------------------------- /microservice-source-code/release2/k8s-fleetman-webapp-angular/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release2/k8s-fleetman-webapp-angular/src/app/app.module.ts -------------------------------------------------------------------------------- /microservice-source-code/release2/k8s-fleetman-webapp-angular/src/app/header/header.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /microservice-source-code/release2/k8s-fleetman-webapp-angular/src/app/header/header.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release2/k8s-fleetman-webapp-angular/src/app/header/header.component.html -------------------------------------------------------------------------------- /microservice-source-code/release2/k8s-fleetman-webapp-angular/src/app/header/header.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release2/k8s-fleetman-webapp-angular/src/app/header/header.component.spec.ts -------------------------------------------------------------------------------- /microservice-source-code/release2/k8s-fleetman-webapp-angular/src/app/header/header.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release2/k8s-fleetman-webapp-angular/src/app/header/header.component.ts -------------------------------------------------------------------------------- /microservice-source-code/release2/k8s-fleetman-webapp-angular/src/app/map/map.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /microservice-source-code/release2/k8s-fleetman-webapp-angular/src/app/map/map.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release2/k8s-fleetman-webapp-angular/src/app/map/map.component.html -------------------------------------------------------------------------------- /microservice-source-code/release2/k8s-fleetman-webapp-angular/src/app/map/map.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release2/k8s-fleetman-webapp-angular/src/app/map/map.component.spec.ts -------------------------------------------------------------------------------- /microservice-source-code/release2/k8s-fleetman-webapp-angular/src/app/map/map.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release2/k8s-fleetman-webapp-angular/src/app/map/map.component.ts -------------------------------------------------------------------------------- /microservice-source-code/release2/k8s-fleetman-webapp-angular/src/app/vehicle.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release2/k8s-fleetman-webapp-angular/src/app/vehicle.service.spec.ts -------------------------------------------------------------------------------- /microservice-source-code/release2/k8s-fleetman-webapp-angular/src/app/vehicle.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release2/k8s-fleetman-webapp-angular/src/app/vehicle.service.ts -------------------------------------------------------------------------------- /microservice-source-code/release2/k8s-fleetman-webapp-angular/src/app/vehicle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release2/k8s-fleetman-webapp-angular/src/app/vehicle.ts -------------------------------------------------------------------------------- /microservice-source-code/release2/k8s-fleetman-webapp-angular/src/app/vehicles/vehicles.component.css: -------------------------------------------------------------------------------- 1 | table { 2 | border-bottom: 1px solid silver; 3 | } 4 | -------------------------------------------------------------------------------- /microservice-source-code/release2/k8s-fleetman-webapp-angular/src/app/vehicles/vehicles.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release2/k8s-fleetman-webapp-angular/src/app/vehicles/vehicles.component.html -------------------------------------------------------------------------------- /microservice-source-code/release2/k8s-fleetman-webapp-angular/src/app/vehicles/vehicles.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release2/k8s-fleetman-webapp-angular/src/app/vehicles/vehicles.component.spec.ts -------------------------------------------------------------------------------- /microservice-source-code/release2/k8s-fleetman-webapp-angular/src/app/vehicles/vehicles.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release2/k8s-fleetman-webapp-angular/src/app/vehicles/vehicles.component.ts -------------------------------------------------------------------------------- /microservice-source-code/release2/k8s-fleetman-webapp-angular/src/assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /microservice-source-code/release2/k8s-fleetman-webapp-angular/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /microservice-source-code/release2/k8s-fleetman-webapp-angular/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release2/k8s-fleetman-webapp-angular/src/environments/environment.ts -------------------------------------------------------------------------------- /microservice-source-code/release2/k8s-fleetman-webapp-angular/src/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release2/k8s-fleetman-webapp-angular/src/favicon.png -------------------------------------------------------------------------------- /microservice-source-code/release2/k8s-fleetman-webapp-angular/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release2/k8s-fleetman-webapp-angular/src/index.html -------------------------------------------------------------------------------- /microservice-source-code/release2/k8s-fleetman-webapp-angular/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release2/k8s-fleetman-webapp-angular/src/main.ts -------------------------------------------------------------------------------- /microservice-source-code/release2/k8s-fleetman-webapp-angular/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release2/k8s-fleetman-webapp-angular/src/polyfills.ts -------------------------------------------------------------------------------- /microservice-source-code/release2/k8s-fleetman-webapp-angular/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release2/k8s-fleetman-webapp-angular/src/styles.css -------------------------------------------------------------------------------- /microservice-source-code/release2/k8s-fleetman-webapp-angular/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release2/k8s-fleetman-webapp-angular/src/test.ts -------------------------------------------------------------------------------- /microservice-source-code/release2/k8s-fleetman-webapp-angular/src/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release2/k8s-fleetman-webapp-angular/src/tsconfig.app.json -------------------------------------------------------------------------------- /microservice-source-code/release2/k8s-fleetman-webapp-angular/src/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release2/k8s-fleetman-webapp-angular/src/tsconfig.spec.json -------------------------------------------------------------------------------- /microservice-source-code/release2/k8s-fleetman-webapp-angular/src/typings.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release2/k8s-fleetman-webapp-angular/src/typings.d.ts -------------------------------------------------------------------------------- /microservice-source-code/release2/k8s-fleetman-webapp-angular/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release2/k8s-fleetman-webapp-angular/tsconfig.json -------------------------------------------------------------------------------- /microservice-source-code/release2/k8s-fleetman-webapp-angular/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release2/k8s-fleetman-webapp-angular/tslint.json -------------------------------------------------------------------------------- /microservice-source-code/release2/k8s-fleetman-webapp-angular19/fleetman-webapp/.dockerignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | -------------------------------------------------------------------------------- /microservice-source-code/release2/k8s-fleetman-webapp-angular19/fleetman-webapp/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release2/k8s-fleetman-webapp-angular19/fleetman-webapp/.editorconfig -------------------------------------------------------------------------------- /microservice-source-code/release2/k8s-fleetman-webapp-angular19/fleetman-webapp/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release2/k8s-fleetman-webapp-angular19/fleetman-webapp/.gitignore -------------------------------------------------------------------------------- /microservice-source-code/release2/k8s-fleetman-webapp-angular19/fleetman-webapp/.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release2/k8s-fleetman-webapp-angular19/fleetman-webapp/.vscode/extensions.json -------------------------------------------------------------------------------- /microservice-source-code/release2/k8s-fleetman-webapp-angular19/fleetman-webapp/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release2/k8s-fleetman-webapp-angular19/fleetman-webapp/.vscode/launch.json -------------------------------------------------------------------------------- /microservice-source-code/release2/k8s-fleetman-webapp-angular19/fleetman-webapp/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release2/k8s-fleetman-webapp-angular19/fleetman-webapp/.vscode/tasks.json -------------------------------------------------------------------------------- /microservice-source-code/release2/k8s-fleetman-webapp-angular19/fleetman-webapp/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release2/k8s-fleetman-webapp-angular19/fleetman-webapp/Dockerfile -------------------------------------------------------------------------------- /microservice-source-code/release2/k8s-fleetman-webapp-angular19/fleetman-webapp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release2/k8s-fleetman-webapp-angular19/fleetman-webapp/README.md -------------------------------------------------------------------------------- /microservice-source-code/release2/k8s-fleetman-webapp-angular19/fleetman-webapp/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release2/k8s-fleetman-webapp-angular19/fleetman-webapp/angular.json -------------------------------------------------------------------------------- /microservice-source-code/release2/k8s-fleetman-webapp-angular19/fleetman-webapp/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release2/k8s-fleetman-webapp-angular19/fleetman-webapp/nginx.conf -------------------------------------------------------------------------------- /microservice-source-code/release2/k8s-fleetman-webapp-angular19/fleetman-webapp/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release2/k8s-fleetman-webapp-angular19/fleetman-webapp/package-lock.json -------------------------------------------------------------------------------- /microservice-source-code/release2/k8s-fleetman-webapp-angular19/fleetman-webapp/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release2/k8s-fleetman-webapp-angular19/fleetman-webapp/package.json -------------------------------------------------------------------------------- /microservice-source-code/release2/k8s-fleetman-webapp-angular19/fleetman-webapp/public/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release2/k8s-fleetman-webapp-angular19/fleetman-webapp/public/apple-touch-icon.png -------------------------------------------------------------------------------- /microservice-source-code/release2/k8s-fleetman-webapp-angular19/fleetman-webapp/public/favicon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release2/k8s-fleetman-webapp-angular19/fleetman-webapp/public/favicon-96x96.png -------------------------------------------------------------------------------- /microservice-source-code/release2/k8s-fleetman-webapp-angular19/fleetman-webapp/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release2/k8s-fleetman-webapp-angular19/fleetman-webapp/public/favicon.ico -------------------------------------------------------------------------------- /microservice-source-code/release2/k8s-fleetman-webapp-angular19/fleetman-webapp/public/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release2/k8s-fleetman-webapp-angular19/fleetman-webapp/public/favicon.png -------------------------------------------------------------------------------- /microservice-source-code/release2/k8s-fleetman-webapp-angular19/fleetman-webapp/public/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release2/k8s-fleetman-webapp-angular19/fleetman-webapp/public/favicon.svg -------------------------------------------------------------------------------- /microservice-source-code/release2/k8s-fleetman-webapp-angular19/fleetman-webapp/public/layers-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release2/k8s-fleetman-webapp-angular19/fleetman-webapp/public/layers-2x.png -------------------------------------------------------------------------------- /microservice-source-code/release2/k8s-fleetman-webapp-angular19/fleetman-webapp/public/layers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release2/k8s-fleetman-webapp-angular19/fleetman-webapp/public/layers.png -------------------------------------------------------------------------------- /microservice-source-code/release2/k8s-fleetman-webapp-angular19/fleetman-webapp/public/marker-icon-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release2/k8s-fleetman-webapp-angular19/fleetman-webapp/public/marker-icon-2x.png -------------------------------------------------------------------------------- /microservice-source-code/release2/k8s-fleetman-webapp-angular19/fleetman-webapp/public/marker-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release2/k8s-fleetman-webapp-angular19/fleetman-webapp/public/marker-icon.png -------------------------------------------------------------------------------- /microservice-source-code/release2/k8s-fleetman-webapp-angular19/fleetman-webapp/public/marker-shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release2/k8s-fleetman-webapp-angular19/fleetman-webapp/public/marker-shadow.png -------------------------------------------------------------------------------- /microservice-source-code/release2/k8s-fleetman-webapp-angular19/fleetman-webapp/public/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release2/k8s-fleetman-webapp-angular19/fleetman-webapp/public/site.webmanifest -------------------------------------------------------------------------------- /microservice-source-code/release2/k8s-fleetman-webapp-angular19/fleetman-webapp/public/web-app-manifest-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release2/k8s-fleetman-webapp-angular19/fleetman-webapp/public/web-app-manifest-192x192.png -------------------------------------------------------------------------------- /microservice-source-code/release2/k8s-fleetman-webapp-angular19/fleetman-webapp/public/web-app-manifest-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release2/k8s-fleetman-webapp-angular19/fleetman-webapp/public/web-app-manifest-512x512.png -------------------------------------------------------------------------------- /microservice-source-code/release2/k8s-fleetman-webapp-angular19/fleetman-webapp/src/app/app.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /microservice-source-code/release2/k8s-fleetman-webapp-angular19/fleetman-webapp/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release2/k8s-fleetman-webapp-angular19/fleetman-webapp/src/app/app.component.html -------------------------------------------------------------------------------- /microservice-source-code/release2/k8s-fleetman-webapp-angular19/fleetman-webapp/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release2/k8s-fleetman-webapp-angular19/fleetman-webapp/src/app/app.component.ts -------------------------------------------------------------------------------- /microservice-source-code/release2/k8s-fleetman-webapp-angular19/fleetman-webapp/src/app/app.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release2/k8s-fleetman-webapp-angular19/fleetman-webapp/src/app/app.config.ts -------------------------------------------------------------------------------- /microservice-source-code/release2/k8s-fleetman-webapp-angular19/fleetman-webapp/src/app/app.routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release2/k8s-fleetman-webapp-angular19/fleetman-webapp/src/app/app.routes.ts -------------------------------------------------------------------------------- /microservice-source-code/release2/k8s-fleetman-webapp-angular19/fleetman-webapp/src/app/header/header.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /microservice-source-code/release2/k8s-fleetman-webapp-angular19/fleetman-webapp/src/app/header/header.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release2/k8s-fleetman-webapp-angular19/fleetman-webapp/src/app/header/header.component.html -------------------------------------------------------------------------------- /microservice-source-code/release2/k8s-fleetman-webapp-angular19/fleetman-webapp/src/app/header/header.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release2/k8s-fleetman-webapp-angular19/fleetman-webapp/src/app/header/header.component.ts -------------------------------------------------------------------------------- /microservice-source-code/release2/k8s-fleetman-webapp-angular19/fleetman-webapp/src/app/map/map.component.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /microservice-source-code/release2/k8s-fleetman-webapp-angular19/fleetman-webapp/src/app/map/map.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release2/k8s-fleetman-webapp-angular19/fleetman-webapp/src/app/map/map.component.html -------------------------------------------------------------------------------- /microservice-source-code/release2/k8s-fleetman-webapp-angular19/fleetman-webapp/src/app/map/map.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release2/k8s-fleetman-webapp-angular19/fleetman-webapp/src/app/map/map.component.ts -------------------------------------------------------------------------------- /microservice-source-code/release2/k8s-fleetman-webapp-angular19/fleetman-webapp/src/app/vehicle.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release2/k8s-fleetman-webapp-angular19/fleetman-webapp/src/app/vehicle.service.ts -------------------------------------------------------------------------------- /microservice-source-code/release2/k8s-fleetman-webapp-angular19/fleetman-webapp/src/app/vehicle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release2/k8s-fleetman-webapp-angular19/fleetman-webapp/src/app/vehicle.ts -------------------------------------------------------------------------------- /microservice-source-code/release2/k8s-fleetman-webapp-angular19/fleetman-webapp/src/app/vehicles/vehicles.component.css: -------------------------------------------------------------------------------- 1 | table { 2 | border-bottom: 1px solid silver; 3 | } 4 | -------------------------------------------------------------------------------- /microservice-source-code/release2/k8s-fleetman-webapp-angular19/fleetman-webapp/src/app/vehicles/vehicles.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release2/k8s-fleetman-webapp-angular19/fleetman-webapp/src/app/vehicles/vehicles.component.ts -------------------------------------------------------------------------------- /microservice-source-code/release2/k8s-fleetman-webapp-angular19/fleetman-webapp/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release2/k8s-fleetman-webapp-angular19/fleetman-webapp/src/index.html -------------------------------------------------------------------------------- /microservice-source-code/release2/k8s-fleetman-webapp-angular19/fleetman-webapp/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release2/k8s-fleetman-webapp-angular19/fleetman-webapp/src/main.ts -------------------------------------------------------------------------------- /microservice-source-code/release2/k8s-fleetman-webapp-angular19/fleetman-webapp/src/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release2/k8s-fleetman-webapp-angular19/fleetman-webapp/src/styles.css -------------------------------------------------------------------------------- /microservice-source-code/release2/k8s-fleetman-webapp-angular19/fleetman-webapp/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release2/k8s-fleetman-webapp-angular19/fleetman-webapp/tsconfig.app.json -------------------------------------------------------------------------------- /microservice-source-code/release2/k8s-fleetman-webapp-angular19/fleetman-webapp/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release2/k8s-fleetman-webapp-angular19/fleetman-webapp/tsconfig.json -------------------------------------------------------------------------------- /microservice-source-code/release2/k8s-fleetman-webapp-angular19/fleetman-webapp/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release2/k8s-fleetman-webapp-angular19/fleetman-webapp/tsconfig.spec.json -------------------------------------------------------------------------------- /microservice-source-code/release3/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release3/README -------------------------------------------------------------------------------- /microservice-source-code/release3/k8s-fleetman-position-tracker/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release3/k8s-fleetman-position-tracker/.gitignore -------------------------------------------------------------------------------- /microservice-source-code/release3/k8s-fleetman-position-tracker/.mvn/wrapper/maven-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release3/k8s-fleetman-position-tracker/.mvn/wrapper/maven-wrapper.jar -------------------------------------------------------------------------------- /microservice-source-code/release3/k8s-fleetman-position-tracker/.mvn/wrapper/maven-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release3/k8s-fleetman-position-tracker/.mvn/wrapper/maven-wrapper.properties -------------------------------------------------------------------------------- /microservice-source-code/release3/k8s-fleetman-position-tracker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release3/k8s-fleetman-position-tracker/Dockerfile -------------------------------------------------------------------------------- /microservice-source-code/release3/k8s-fleetman-position-tracker/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release3/k8s-fleetman-position-tracker/LICENSE -------------------------------------------------------------------------------- /microservice-source-code/release3/k8s-fleetman-position-tracker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release3/k8s-fleetman-position-tracker/README.md -------------------------------------------------------------------------------- /microservice-source-code/release3/k8s-fleetman-position-tracker/mvnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release3/k8s-fleetman-position-tracker/mvnw -------------------------------------------------------------------------------- /microservice-source-code/release3/k8s-fleetman-position-tracker/mvnw.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release3/k8s-fleetman-position-tracker/mvnw.cmd -------------------------------------------------------------------------------- /microservice-source-code/release3/k8s-fleetman-position-tracker/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release3/k8s-fleetman-position-tracker/pom.xml -------------------------------------------------------------------------------- /microservice-source-code/release3/k8s-fleetman-position-tracker/src/main/resources/application-localhost.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release3/k8s-fleetman-position-tracker/src/main/resources/application-localhost.properties -------------------------------------------------------------------------------- /microservice-source-code/release3/k8s-fleetman-position-tracker/src/main/resources/application-standalone.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release3/k8s-fleetman-position-tracker/src/main/resources/application-standalone.properties -------------------------------------------------------------------------------- /microservice-source-code/release3/k8s-fleetman-position-tracker/src/test/java/com/virtualpairprogrammers/TestUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DickChesterwood/k8s-fleetman/HEAD/microservice-source-code/release3/k8s-fleetman-position-tracker/src/test/java/com/virtualpairprogrammers/TestUtils.java --------------------------------------------------------------------------------