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

Up limits and requests #901

Merged
merged 3 commits into from
Dec 14, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
4 changes: 2 additions & 2 deletions config/manager/manager.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -81,10 +81,10 @@ spec:
resources:
limits:
cpu: 500m
memory: 1Gi
memory: 1500Mi
requests:
cpu: 100m
memory: 500Mi
memory: 1Gi
volumeMounts:
- mountPath: "/config/"
name: "config"
Expand Down
4 changes: 2 additions & 2 deletions deploy-mutate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8280,10 +8280,10 @@ objects:
resources:
limits:
cpu: 500m
memory: 1Gi
memory: 1500Mi
requests:
cpu: 100m
memory: 500Mi
memory: 1Gi
securityContext:
allowPrivilegeEscalation: false
capabilities:
Expand Down
4 changes: 2 additions & 2 deletions deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8280,10 +8280,10 @@ objects:
resources:
limits:
cpu: 500m
memory: 1Gi
memory: 1500Mi
requests:
cpu: 100m
memory: 500Mi
memory: 1Gi
securityContext:
allowPrivilegeEscalation: false
capabilities:
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# Untitled string in AppConfig Schema

```txt
https://cloud.redhat.com/schemas/clowder-appconfig#/definitions/DependencyEndpoint/properties/apiPaths/items
```




| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In |
| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------- |
| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [schema.json\*](../../out/schema.json "open original schema") |

## items Type

`string`
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# Untitled array in AppConfig Schema

```txt
https://cloud.redhat.com/schemas/clowder-appconfig#/definitions/DependencyEndpoint/properties/apiPaths
```

The list of API paths (each matching format: '/api/some-path/') that this app will serve requests from


| Abstract | Extensible | Status | Identifiable | Custom Properties | Additional Properties | Access Restrictions | Defined In |
| :------------------ | ---------- | -------------- | ----------------------- | :---------------- | --------------------- | ------------------- | ------------------------------------------------------------- |
| Can be instantiated | No | Unknown status | Unknown identifiability | Forbidden | Allowed | none | [schema.json\*](../../out/schema.json "open original schema") |

## apiPaths Type

`string[]`
Loading