How to add an application in AKS to a POD?

JMN-2253 576 Reputation points
2023-05-12T15:45:31.1033333+00:00

Hi there,

As I am learning AKS and testing things going through MSFT articles, I noticed that I have a running application with No POD on AKS cluster.

The application:

https://learn.microsoft.com/en-us/azure/application-gateway/tutorial-ingress-controller-add-on-existing

A screenshot of my Pods:

AKS - Pods

A screenshot of my application (ingress):

AKS - Services and ingresses

It is not in a pod:

AKS - Pods no aspnetapp

I need to know:

1- Should I name aspnetapp a container?, if not, then what we call it?

2- How can I put the application in a new POD?

Azure Kubernetes Service (AKS)
Azure Kubernetes Service (AKS)
An Azure service that provides serverless Kubernetes, an integrated continuous integration and continuous delivery experience, and enterprise-grade security and governance.
1,866 questions
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. SUNOJ KUMAR YELURU 13,941 Reputation points MVP
    2023-05-14T01:46:23.5933333+00:00

    Hello @JMN-2253

    Kubernetes provides a distributed platform for containerized applications. You build and deploy your own applications and services into a Kubernetes cluster and let the cluster manage the availability and connectivity.

    • Update a Kubernetes manifest file.
    • Run an application in Kubernetes.
    • Test the application.

    refer Deploy the application