Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add ConfigMap for Persistent Plugin File Values #12

Merged
merged 25 commits into from
Apr 18, 2024
Merged
Changes from 2 commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
cdc98fb
Use config map for /etc/gatewayd_plugins.yaml
Feb 9, 2024
7ca5b94
refactoring helm repo directory
Feb 18, 2024
d2ceaac
Add docs and fix time out
Feb 18, 2024
d7e8bd6
Create helm test pipeline
hamedsalim1999 Mar 10, 2024
c9d0a01
Merge pull request #13 from gatewayd-io/hamedsalim1999-patch-1
hamedsalim1999 Mar 10, 2024
5c0b61a
Commet all check changes steps
hamedsalim1999 Mar 10, 2024
a3caa26
Add chart-testing
hamedsalim1999 Mar 10, 2024
01a89c0
Change github branch
hamedsalim1999 Mar 10, 2024
b2a4c2a
Fix typO error
hamedsalim1999 Mar 10, 2024
2ab7c29
Remove if changes line
hamedsalim1999 Mar 10, 2024
4dc7ad8
install psql helm chart
hamedsalim1999 Mar 10, 2024
b390509
Try to install psql helm chart
hamedsalim1999 Mar 10, 2024
57d26ec
uncomment test psql
hamedsalim1999 Mar 10, 2024
8602183
Try to install psql at minikube for test pipeline
hamedsalim1999 Apr 7, 2024
ca0d8db
Fix minikube problem
hamedsalim1999 Apr 7, 2024
3f8baa4
Fix gatewayd checks
hamedsalim1999 Apr 7, 2024
44083a3
Fix statement
hamedsalim1999 Apr 7, 2024
875eaac
Change test script
hamedsalim1999 Apr 7, 2024
7d30602
USe same approche for gatewayd
hamedsalim1999 Apr 7, 2024
124a6ea
Test psql is work or not
hamedsalim1999 Apr 7, 2024
9ea84cf
Undo change and confirm pipeline is work fine
hamedsalim1999 Apr 7, 2024
cbf0a29
Change push and PR state
hamedsalim1999 Apr 7, 2024
0f64e16
Fix MR comments
hamedsalim1999 Apr 17, 2024
82fab28
Organized configuration parameters into separate sections for clarity…
hamedsalim1999 Apr 17, 2024
e84125b
Update plugin config
mostafa Apr 18, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
40 changes: 40 additions & 0 deletions .github/workflows/helm-test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
# This is a basic workflow to help you get started with Actions

name: CI

# Controls when the workflow will run
on:
# Triggers the workflow on push or pull request events but only for the "main" branch
push:
branches: [ "8-add-configmap" ]
pull_request:
branches: [ "8-add-configmap" ]
hamedsalim1999 marked this conversation as resolved.
Show resolved Hide resolved

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
build:
# The type of runner that the job will run on
runs-on: ubuntu-latest

# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v3

# Runs a TEst cahrt
- name: Run chart-testing (lint)
if: steps.list-changed.outputs.changed == 'true'
run: ct lint --target-branch ${{ github.event.repository.default_branch }}

- name: Create kind cluster
if: steps.list-changed.outputs.changed == 'true'
uses: helm/[email protected]

- name: Run chart-testing (install)
if: steps.list-changed.outputs.changed == 'true'
run: ct install --target-branch ${{ github.event.repository.default_branch }}

Loading