OWASP Nest Kubernetes Options #933
Replies: 2 comments
-
To configure Helm in the GitHub Actions workflow: # Pseudo workflow
# Other workflow steps including containerization
- name: Configure kubectl
uses: aws-actions/eksctl-action@v1
with:
cluster-name: ${{ env.EKS_CLUSTER_NAME }}
region: ${{ env.AWS_REGION }}
- name: Deploy with Helm
run: |
helm upgrade --install my-service ./helm \
--set image.repository=${{ env.AWS_ACCOUNT_ID }}.dkr.ecr.${{ env.AWS_REGION }}.amazonaws.com/${{ env.IMAGE_NAME }} \
--set image.tag=latest A good documentation on Helm is available.
|
Beta Was this translation helpful? Give feedback.
-
Hi @arkid15r I was checking out issue #706, where you highlighted the plan and steps. We should discuss about 1 (planning and architecture) and 2 (k8s setup).
The fork contains an experimental version, which I am trying to assess and experiment with. Could you give me feedback on it? I will post my findings here in the discussion. |
Beta Was this translation helpful? Give feedback.
-
Technical Challenges & Implementation Options
Hey everyone,
We're moving forward with adopting Amazon EKS for OWASP Nest. Our main focus now is tackling the technical challenges and deciding on implementation details to ensure a smooth transition.
Key Areas for Discussion:
If you have experience with EKS, Kubernetes, or similar setups, we’d love your input! What challenges do you foresee, and what approaches would you recommend?
Beta Was this translation helpful? Give feedback.
All reactions