Skip to content

Commit

Permalink
Merge pull request #3948 from lsst-sqre/u/kfindeisen/pp-4.10.0
Browse files Browse the repository at this point in the history
Update Prompt Processing to 4.10.0 and pull in configs from Argo
  • Loading branch information
kfindeisen authored Dec 3, 2024
2 parents 5c20706 + 0adcc60 commit cf28f25
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ prompt-proto-service:
image:
pullPolicy: IfNotPresent
# Overrides the image tag whose default is the chart appVersion.
tag: 4.9.0
tag: 4.10.0

instrument:
pipelines:
Expand Down
4 changes: 2 additions & 2 deletions applications/prompt-proto-service-lsstcomcam/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@ Prompt Proto Service is an event driven service for processing camera images. Th
| prompt-proto-service.instrument.skymap | string | `"lsst_cells_v1"` | Skymap to use with the instrument |
| prompt-proto-service.knative.cpuLimit | int | `1` | The maximum cpu cores for the full pod (see `containerConcurrency`). |
| prompt-proto-service.knative.cpuRequest | int | `1` | The cpu cores requested for the full pod (see `containerConcurrency`). |
| prompt-proto-service.knative.ephemeralStorageLimit | string | `"5Gi"` | The maximum storage space allowed for each container (mostly local Butler). This allocation is for the full pod (see `containerConcurrency`) |
| prompt-proto-service.knative.ephemeralStorageRequest | string | `"5Gi"` | The storage space reserved for each container (mostly local Butler). This allocation is for the full pod (see `containerConcurrency`) |
| prompt-proto-service.knative.ephemeralStorageLimit | string | `"8Gi"` | The maximum storage space allowed for each container (mostly local Butler). This allocation is for the full pod (see `containerConcurrency`) |
| prompt-proto-service.knative.ephemeralStorageRequest | string | `"8Gi"` | The storage space reserved for each container (mostly local Butler). This allocation is for the full pod (see `containerConcurrency`) |
| prompt-proto-service.knative.gpu | bool | `false` | GPUs enabled. |
| prompt-proto-service.knative.gpuRequest | int | `0` | The number of GPUs to request for the full pod (see `containerConcurrency`). |
| prompt-proto-service.knative.idleTimeout | int | `900` | Maximum time that a container can send nothing to Knative (seconds). This is only useful if the container runs async workers. If 0, idle timeout is ignored. |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ prompt-proto-service:
image:
pullPolicy: IfNotPresent
# Overrides the image tag whose default is the chart appVersion.
tag: 4.9.0
tag: 4.10.0

instrument:
pipelines:
Expand All @@ -25,8 +25,6 @@ prompt-proto-service:
- ${PROMPT_PROCESSING_DIR}/pipelines/LSSTComCam/ApPipe.yaml
- ${PROMPT_PROCESSING_DIR}/pipelines/LSSTComCam/SingleFrame.yaml
- ${PROMPT_PROCESSING_DIR}/pipelines/LSSTComCam/Isr.yaml
- survey: BLOCK-T60 # optics alignment
pipelines: []
- survey: BLOCK-T75 # giant donuts
pipelines: []
- survey: BLOCK-T88 # optics alignment
Expand All @@ -35,27 +33,37 @@ prompt-proto-service:
pipelines: []
- survey: BLOCK-T216 # twilight flats
pipelines: []
- survey: BLOCK-T219 # pretty pictures
pipeliens: []
- survey: BLOCK-T246 # instrument checkout
pipelines: ['${PROMPT_PROCESSING_DIR}/pipelines/LSSTComCam/Isr-cal.yaml']
- survey: BLOCK-T249 # AOS alignment
pipelines: []
- survey: BLOCK-T250 # TMA daytime checkout
pipelines: []
- {survey: BLOCK-T306, pipelines: []} # Manual observations during SV block
- {survey: BLOCK-T307, pipelines: []} # Manual observations during SV block
- {survey: BLOCK-T308, pipelines: []} # Manual observations during SV block
- {survey: BLOCK-T309, pipelines: []} # Manual observations during SV block
- {survey: BLOCK-T310, pipelines: []} # Manual observations during SV block
- {survey: BLOCK-T311, pipelines: []} # Manual observations during SV block
- {survey: BLOCK-T312, pipelines: []} # Manual observations during SV block
- {survey: "", pipelines: []}
preprocessing: |-
- survey: BLOCK-320
pipelines: ['${PROMPT_PROCESSING_DIR}/pipelines/LSSTComCam/Preprocessing.yaml']
- {survey: BLOCK-T60, pipelines: []}
- {survey: BLOCK-T75, pipelines: []}
- {survey: BLOCK-T88, pipelines: []}
- {survey: BLOCK-T215, pipelines: []}
- {survey: BLOCK-T216, pipelines: []}
- {survey: BLOCK-T219, pipelines: []}
- {survey: BLOCK-T246, pipelines: []}
- {survey: BLOCK-T249, pipelines: []}
- {survey: BLOCK-T250, pipelines: []}
- {survey: BLOCK-T306, pipelines: []}
- {survey: BLOCK-T307, pipelines: []}
- {survey: BLOCK-T308, pipelines: []}
- {survey: BLOCK-T309, pipelines: []}
- {survey: BLOCK-T310, pipelines: []}
- {survey: BLOCK-T311, pipelines: []}
- {survey: BLOCK-T312, pipelines: []}
- {survey: "", pipelines: []}
calibRepo: s3://rubin-summit-users

Expand Down
4 changes: 2 additions & 2 deletions applications/prompt-proto-service-lsstcomcam/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -131,10 +131,10 @@ prompt-proto-service:
cpuLimit: 1
# -- The storage space reserved for each container (mostly local Butler).
# This allocation is for the full pod (see `containerConcurrency`)
ephemeralStorageRequest: "5Gi"
ephemeralStorageRequest: "8Gi"
# -- The maximum storage space allowed for each container (mostly local Butler).
# This allocation is for the full pod (see `containerConcurrency`)
ephemeralStorageLimit: "5Gi"
ephemeralStorageLimit: "8Gi"
# -- GPUs enabled.
gpu: false
# -- The number of GPUs to request for the full pod (see `containerConcurrency`).
Expand Down

0 comments on commit cf28f25

Please sign in to comment.