Roadmap to becoming a developer in 2022
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
1.3 KiB

Adding content to Kubernetes Roadmap (#3477) * Update 100-kubernetes-overview.md * Update 101-why-kubernetes.md * Update 102-key-concepts-terminologies.md * Update 103-kubernetes-alternatives.md * Update index.md * Update 100-installing-a-local-cluster.md * Update 101-why-kubernetes.md * Update 102-key-concepts-terminologies.md * Update 103-kubernetes-alternatives.md * Update index.md * Update 100-installing-a-local-cluster.md * Update 101-choosing-a-managed-provider.md * Update 102-deploying-your-first-application.md * Update index.md * Update 100-pods.md * Update 101-replicasets.md * Update 103-statefulsets.md * Update 103-statefulsets.md * Update 104-jobs.md * Update index.md * Update 100-networking-and-pod-to-pod-communication.md * Update 101-load-balancing.md * Update 102-external-access-to-services.md * Update index.md * Update 100-config-maps.md * Update 101-secrets.md * Update index.md * Update 100-setting-resource-requests-and-limits.md * Update 101-assigning-quotas-to-namespaces.md * Update 102-monitoring-and-optimizing-resource-usage.md * Update 102-monitoring-and-optimizing-resource-usage.md * Update index.md * Update 100-role-based-acccess-control.md * Update 101-network-security.md * Update 102-container-and-pod-security.md * Update 103-security-scanners.md * Update index.md * Update 100-logs.md * Update 101-metrics.md * Update 102-traces.md * Update 103-resource-health.md * Update 104-observability-engines.md * Update index.md * Update 100-horizontal-pod-autoscaler.md * Update 101-vertical-pod-autoscaler.md * Update 102-cluster-autoscaling.md * Update index.md * Update 100-scheduling-basics.md * Update 101-taints-and-tolerations.md * Update 102-topology-spread-constraints.md * Update 103-pod-priorities.md * Update 104-evictions.md * Update index.md * Update 100-csi-drivers.md * Update 101-stateful-applications.md * Update index.md * Update 100-ci-cd-integration.md * Update 101-gitops.md * Update 102-helm-charts.md * Update 103-canary-deployments.md * Update 104-blue-green-deployments.md * Update 105-rolling-updates-rollbacks.md * Update index.md * Update 100-custom-controllers.md * Update 101-custom-schedulers-extenders.md * Update 102-custom-resource-definitions.md * Update 103-kubernetes-extensions-and-apis.md * Update 104-own-cluster.md * Update 105-control-plane-installation.md * Update 106-managing-worker-nodes.md * Update 107-multi-cluster-management.md * Update index.md * Update index.md
2 years ago
# Deploying your First Application
To deploy your first application in Kubernetes, you need to create a deployment and service manifest in YAML files, apply the manifests to your Kubernetes cluster using the kubectl apply command, verify that your application's pods are running with kubectl get pods, and test the service with kubectl get services and accessing the service using a web browser or a tool like cURL. There are also various tools and platforms available that can simplify application deployment in Kubernetes, such as Helm charts and Kubernetes operators.
Learn more from the following links:
10 months ago
- [@official@Using kubectl to Create a Deployment](https://kubernetes.io/docs/tutorials/kubernetes-basics/deploy-app/deploy-intro/)
- [@article@Deploying An Application On Kubernetes From A to Z](https://web.archive.org/web/20230326150953/https://www.weave.works/blog/deploying-an-application-on-kubernetes-from-a-to-z)
10 months ago
- [@video@Kubernetes Tutorial | Your First Kubernetes Application](https://www.youtube.com/watch?v=Vj6EFnav5Mg)
- [@video@Kubernetes 101: Deploying Your First Application](https://www.youtube.com/watch?v=XltFOyGanYE)
- [@article@Kubernetes 101: Deploy Your First Application with MicroK8s](https://thenewstack.io/kubernetes-101-deploy-your-first-application-with-microk8s/)