From 42a0a9d0c87f656f30cbd2eeb7ec745b7bc44165 Mon Sep 17 00:00:00 2001 From: Arthur Lutz Date: Wed, 21 Dec 2022 17:34:35 +0100 Subject: [PATCH 1/7] fix(helm-charts/frontend): port listenning to 3000 --- helm-charts/infisical/templates/frontend-deployment.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helm-charts/infisical/templates/frontend-deployment.yaml b/helm-charts/infisical/templates/frontend-deployment.yaml index 3930fda2b..14be95506 100644 --- a/helm-charts/infisical/templates/frontend-deployment.yaml +++ b/helm-charts/infisical/templates/frontend-deployment.yaml @@ -34,7 +34,7 @@ spec: {{- end }} {{- end }} ports: - - containerPort: 4000 + - containerPort: 3000 --- apiVersion: v1 kind: Service From a939d980995e2e3103833b62c312de0c947e71f7 Mon Sep 17 00:00:00 2001 From: mv-turtle <78047717+mv-turtle@users.noreply.github.com> Date: Thu, 22 Dec 2022 00:50:05 -0500 Subject: [PATCH 2/7] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index caf79191e..52a3c3130 100644 --- a/README.md +++ b/README.md @@ -317,4 +317,4 @@ Infisical officially launched as v.1.0 on November 21st, 2022. However, a lot of - + From 1dc03399ce3c721d065dd7e41a4ad9e391477a37 Mon Sep 17 00:00:00 2001 From: Maidul Islam Date: Thu, 22 Dec 2022 10:52:09 -0500 Subject: [PATCH 3/7] Update close_inactive_issues.yml --- .github/workflows/close_inactive_issues.yml | 42 ++++++++++----------- 1 file changed, 21 insertions(+), 21 deletions(-) diff --git a/.github/workflows/close_inactive_issues.yml b/.github/workflows/close_inactive_issues.yml index 315c9e929..7cad5a8c5 100644 --- a/.github/workflows/close_inactive_issues.yml +++ b/.github/workflows/close_inactive_issues.yml @@ -1,22 +1,22 @@ -name: Close inactive issues -on: - schedule: - - cron: "30 1 * * *" +# name: Close inactive issues +# on: +# schedule: +# - cron: "30 1 * * *" -jobs: - close-issues: - runs-on: ubuntu-latest - permissions: - issues: write - pull-requests: write - steps: - - uses: actions/stale@v4 - with: - days-before-issue-stale: 30 - days-before-issue-close: 14 - stale-issue-label: "stale" - stale-issue-message: "This issue is stale because it has been open for 30 days with no activity." - close-issue-message: "This issue was closed because it has been inactive for 14 days since being marked as stale." - days-before-pr-stale: -1 - days-before-pr-close: -1 - repo-token: ${{ secrets.GITHUB_TOKEN }} +# jobs: +# close-issues: +# runs-on: ubuntu-latest +# permissions: +# issues: write +# pull-requests: write +# steps: +# - uses: actions/stale@v4 +# with: +# days-before-issue-stale: 30 +# days-before-issue-close: 14 +# stale-issue-label: "stale" +# stale-issue-message: "This issue is stale because it has been open for 30 days with no activity." +# close-issue-message: "This issue was closed because it has been inactive for 14 days since being marked as stale." +# days-before-pr-stale: -1 +# days-before-pr-close: -1 +# repo-token: ${{ secrets.GITHUB_TOKEN }} From e0973f0b28b7490101c8e24dcf945ddd856bd45c Mon Sep 17 00:00:00 2001 From: Maidul Islam Date: Thu, 22 Dec 2022 13:04:30 -0500 Subject: [PATCH 4/7] Delete close_inactive_issues.yml --- .github/workflows/close_inactive_issues.yml | 22 --------------------- 1 file changed, 22 deletions(-) delete mode 100644 .github/workflows/close_inactive_issues.yml diff --git a/.github/workflows/close_inactive_issues.yml b/.github/workflows/close_inactive_issues.yml deleted file mode 100644 index 7cad5a8c5..000000000 --- a/.github/workflows/close_inactive_issues.yml +++ /dev/null @@ -1,22 +0,0 @@ -# name: Close inactive issues -# on: -# schedule: -# - cron: "30 1 * * *" - -# jobs: -# close-issues: -# runs-on: ubuntu-latest -# permissions: -# issues: write -# pull-requests: write -# steps: -# - uses: actions/stale@v4 -# with: -# days-before-issue-stale: 30 -# days-before-issue-close: 14 -# stale-issue-label: "stale" -# stale-issue-message: "This issue is stale because it has been open for 30 days with no activity." -# close-issue-message: "This issue was closed because it has been inactive for 14 days since being marked as stale." -# days-before-pr-stale: -1 -# days-before-pr-close: -1 -# repo-token: ${{ secrets.GITHUB_TOKEN }} From d8d3e02e9246095fec86786fe81590744c8579e3 Mon Sep 17 00:00:00 2001 From: Maidul Islam Date: Thu, 22 Dec 2022 13:26:13 -0500 Subject: [PATCH 5/7] Add ingress annotation as default value --- helm-charts/infisical/values.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/helm-charts/infisical/values.yaml b/helm-charts/infisical/values.yaml index b78543774..743c1e25b 100644 --- a/helm-charts/infisical/values.yaml +++ b/helm-charts/infisical/values.yaml @@ -22,7 +22,8 @@ backend: ingress: enabled: true - annotations: {} + annotations: + kubernetes.io/ingress.class: "nginx" hostName: example.com frontend: path: / From ec0313ffa00e437ef46633b9138f913ef01e0876 Mon Sep 17 00:00:00 2001 From: Maidul Islam Date: Thu, 22 Dec 2022 13:26:51 -0500 Subject: [PATCH 6/7] update helm chart --- helm-charts/infisical/Chart.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helm-charts/infisical/Chart.yaml b/helm-charts/infisical/Chart.yaml index 961a13f76..3b56dcfc2 100644 --- a/helm-charts/infisical/Chart.yaml +++ b/helm-charts/infisical/Chart.yaml @@ -7,7 +7,7 @@ type: application # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. # Versions are expected to follow Semantic Versioning (https://semver.org/) -version: 0.1.5 +version: 0.1.6 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. Versions are not expected to From ca8bc212a3b4fb226306d935a3d7d0685cdf7c32 Mon Sep 17 00:00:00 2001 From: Maidul Islam Date: Thu, 22 Dec 2022 13:35:36 -0500 Subject: [PATCH 7/7] update helm install command --- docs/self-hosting/deployments/kubernetes.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/self-hosting/deployments/kubernetes.mdx b/docs/self-hosting/deployments/kubernetes.mdx index 8ed2c0e05..c1468c9d4 100644 --- a/docs/self-hosting/deployments/kubernetes.mdx +++ b/docs/self-hosting/deployments/kubernetes.mdx @@ -42,7 +42,7 @@ that by adding the `--namespace ` to your `helm install ```bash ## Installs to default namespace -helm install infisical-helm-charts/infisical --values +helm install infisical-helm-charts/infisical --generate-name --values ```