# sample-app-deployment **Repository Path**: crossz/sample-app-deployment ## Basic Information - **Project Name**: sample-app-deployment - **Description**: gitops demo - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2023-09-08 - **Last Updated**: 2023-09-09 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Sample Application Deployment The repository contains Kubernetes manifests that defines the deployment of the [sample application](https://github.com/gitopsbook/sample-app). To deploy the application manually run the following command: ``` kubectl create ns sample-app kubectl apply -f . -n sample-app ``` To test the application run the command below and access http://localhost:8080/ ``` kubectl port-forward svc/sample-app 8080:80 -n sample-app ```