Test Application #10
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test Application | |
on: | |
workflow_dispatch: | |
jobs: | |
port-forward: | |
runs-on: ubuntu-latest | |
permissions: | |
id-token: write # allows creation of an OIDC token | |
contents: read | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Set up AWS CLI | |
uses: aws-actions/configure-aws-credentials@v4 | |
with: | |
role-to-assume: arn:aws:iam::${{ secrets.AWS_ACCOUNT_ID }}:role/eks-federated-deployer | |
role-session-name: eks-deployer-testing | |
aws-region: ${{ secrets.AWS_REGION }} | |
mask-aws-account-id: true | |
- name: Validate AWS Configuration | |
run: | | |
which aws | |
aws --version | |
aws sts get-caller-identity | |
# | |
# - name: Create kube-config directory | |
# run: mkdir -p $HOME/.kube | |
# | |
# - name: Decode and set kubeconfig | |
# run: | | |
# echo "${{ secrets.KUBE_CONFIG_DATA }}" | base64 --decode > $HOME/.kube/config | |
# shell: bash | |
# | |
# - name: Install kubectl | |
# run: | | |
# curl -LO "https://dl.k8s.io/release/$(curl -L -s https://dl.k8s.io/release/stable.txt)/bin/linux/amd64/kubectl" | |
# chmod +x kubectl | |
# sudo mv kubectl /usr/local/bin/ | |
# kubectl version | |
# | |
# - name: Port Forward Service | |
# run: | | |
# kubectl port-forward svc/my-service 9090:8080 -n default & | |
# shell: bash | |
# | |
# - name: Test Service Accessibility | |
# run: | | |
# sleep 10 | |
# curl http://localhost:80/play/marco |