Skip to content
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
7 changes: 7 additions & 0 deletions src/istio/common/zarf.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,13 @@ components:
namespace: istio-system
valuesFiles:
- "../values/base-istiod.yaml"
variables:
- name: PROXY_MEMORY_REQUEST
description: "Memory requests for sidecars in cluster"
path: "global.proxy.resources.requests.memory"
- name: PROXY_CPU_REQUEST
description: "CPU requests for sidecars in cluster"
path: "global.proxy.resources.requests.cpu"
- name: uds-global-istio-config
namespace: istio-system
version: 0.1.0
Expand Down
4 changes: 2 additions & 2 deletions tasks/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,9 @@ tasks:
default: base
description: The UDS Core layer to deploy
actions:
- description: "Deploy UDS Core Base Layer without Ambient (must set UDS_LAYER environment variable)"
- description: "Deploy UDS Core Base Layer"
if: ${{ eq .inputs.layer "base"}}
cmd: uds zarf package deploy build/zarf-package-core-${{ index .inputs "layer" }}-${UDS_ARCH}-${VERSION}.tar.zst --confirm --no-progress --components '*'
cmd: uds zarf package deploy build/zarf-package-core-${{ index .inputs "layer" }}-${UDS_ARCH}-${VERSION}.tar.zst --confirm --no-progress --components '*' --set PROXY_MEMORY_REQUEST=40Mi --set PROXY_CPU_REQUEST=10m
- description: "Deploy a single UDS Core Layer (must set UDS_LAYER environment variable)"
if: ${{ ne .inputs.layer "base"}}
cmd: uds zarf package deploy build/zarf-package-core-${{ index .inputs "layer" }}-${UDS_ARCH}-${VERSION}.tar.zst --confirm --no-progress --components '*'
Expand Down