Skip to content

Commit

Permalink
fix: codegen
Browse files Browse the repository at this point in the history
Signed-off-by: Vishal Choudhary <vishal.choudhary@nirmata.com>
  • Loading branch information
vishal-chdhry committed Jul 5, 2024
1 parent d40193d commit af97a53
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 11 deletions.
1 change: 0 additions & 1 deletion .github/workflows/migration-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,6 @@ jobs:
- name: Install PSS policies
run: |
set -e
kubectl create ns reports-server
export HELM=${{ steps.helm.outputs.helm-path }}
make install-pss-policies
- name: API Service status before migation
Expand Down
4 changes: 2 additions & 2 deletions charts/reports-server/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@ helm install reports-server --namespace reports-server --create-namespace report
| podAnnotations | object | `{}` | Pod annotations |
| podSecurityContext | object | `{"fsGroup":2000}` | Pod security context |
| securityContext | object | See [values.yaml](values.yaml) | Container security context |
| livenessProbe | object | `{"failureThreshold":3,"httpGet":{"path":"/livez","port":"https","scheme":"HTTPS"},"initialDelaySeconds":90,"periodSeconds":10}` | Liveness probe |
| readinessProbe | object | `{"failureThreshold":3,"httpGet":{"path":"/readyz","port":"https","scheme":"HTTPS"},"initialDelaySeconds":100,"periodSeconds":10}` | Readiness probe |
| livenessProbe | object | `{"failureThreshold":10,"httpGet":{"path":"/livez","port":"https","scheme":"HTTPS"},"initialDelaySeconds":20,"periodSeconds":10}` | Liveness probe |
| readinessProbe | object | `{"failureThreshold":10,"httpGet":{"path":"/readyz","port":"https","scheme":"HTTPS"},"initialDelaySeconds":30,"periodSeconds":10}` | Readiness probe |
| resources.limits | string | `nil` | Container resource limits |
| resources.requests | string | `nil` | Container resource requests |
| autoscaling.enabled | bool | `false` | Enable autoscaling |
Expand Down
8 changes: 4 additions & 4 deletions config/install-inmemory.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -193,20 +193,20 @@ spec:
- mountPath: /tmp
name: tmp-dir
livenessProbe:
failureThreshold: 3
failureThreshold: 10
httpGet:
path: /livez
port: https
scheme: HTTPS
initialDelaySeconds: 90
initialDelaySeconds: 20
periodSeconds: 10
readinessProbe:
failureThreshold: 3
failureThreshold: 10
httpGet:
path: /readyz
port: https
scheme: HTTPS
initialDelaySeconds: 100
initialDelaySeconds: 30
periodSeconds: 10
resources:
limits: null
Expand Down
8 changes: 4 additions & 4 deletions config/install.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -288,20 +288,20 @@ spec:
- mountPath: /tmp
name: tmp-dir
livenessProbe:
failureThreshold: 3
failureThreshold: 10
httpGet:
path: /livez
port: https
scheme: HTTPS
initialDelaySeconds: 90
initialDelaySeconds: 20
periodSeconds: 10
readinessProbe:
failureThreshold: 3
failureThreshold: 10
httpGet:
path: /readyz
port: https
scheme: HTTPS
initialDelaySeconds: 100
initialDelaySeconds: 30
periodSeconds: 10
resources:
limits: null
Expand Down

0 comments on commit af97a53

Please sign in to comment.