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

Nutanix csi ha zarf init #100

Merged
merged 19 commits into from
May 13, 2024
Merged
Show file tree
Hide file tree
Changes from 18 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
13 changes: 13 additions & 0 deletions bundles/uds-core-swf/uds-bundle.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,19 @@ packages:
optionalComponents:
- git-server
ref: v0.33.0
overrides:
zarf-seed-registry:
docker-registry:
variables:
- name: REGISTRY_STORAGE_CLASS
justicorn marked this conversation as resolved.
Show resolved Hide resolved
path: persistence.storageClass
default: "nutanix-dynamicfile"
zarf-registry:
docker-registry:
variables:
- name: REGISTRY_STORAGE_CLASS
justicorn marked this conversation as resolved.
Show resolved Hide resolved
path: persistence.storageClass
default: "nutanix-dynamicfile"

# Namespace pre-reqs for swf capabilities
- name: software-factory-namespaces
Expand Down
17 changes: 16 additions & 1 deletion config/uds-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,22 @@ shared:
ADDITIONAL_CA_CHAIN: replace-me-with-additional-ca-chain
variables:
init:
REGISTRY_HPA_ENABLE: false
REGISTRY_HPA_ENABLE: true
REGISTRY_PVC_ENABLED: true
REGISTRY_PVC_ACCESS_MODE: ReadWriteMany
REGISTRY_HPA_AUTO_SIZE: true
REGISTRY_AFFINITY_CUSTOM: |
podAntiAffinity:
preferredDuringSchedulingIgnoredDuringExecution:
- weight: 100
podAffinityTerm:
labelSelector:
matchExpressions:
- key: app
operator: In
values:
- docker-registry
topologyKey: kubernetes.io/hostname
PRISM_ENDPOINT: "PRISM element IP address"
PRISM_USERNAME: "csi-user-prism-element-user"
PRISM_PASSWORD: "csi-user-passoword"
Expand Down