Skip to content

Commit

Permalink
Merge pull request #128 from PierreBeucher/fix-typing
Browse files Browse the repository at this point in the history
Fix typing
  • Loading branch information
PierreBeucher authored Feb 4, 2025
2 parents a11367d + a9b9d66 commit 1b5e294
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 11 deletions.
9 changes: 2 additions & 7 deletions ansible/roles/sunshine/defaults/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,10 @@ sunshine_project_dir: "{{ ansible_user_dir }}/sunshine"
# Changing this value will cause to lose track of existing data unless they are moved as well
sunshine_data_dir: "{{ sunshine_project_dir }}/data"

# Set the Nvidia driver version to install additional components in container on startup
# If not set, Nvidia driver version will be inferred from host
# Set to force use of specific Nvidia driver version
# A mismatch between host version and container version may yield unexpected results
# sunshine_nvidia_driver_version:

# Sunshine Web UI username and password (base64 encoded)
# If unset password will have to be set via Sunshine web UI
sunshine_web_username: ""
sunshine_web_password_base64: ""
sunshine_web_password_base64: "" # Password encoded in base64, eg echo -n "<password>" | base64

# Sunshine container image to use
sunshine_image_tag: "dev"
Expand Down
11 changes: 7 additions & 4 deletions test/integ/pulumi/test-config.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@ export const awsInput: PulumiStackConfigAws = {
rootVolumeSizeGB: 100,
publicSshKeyContent: pubKey,
publicIpType: PUBLIC_IP_TYPE_STATIC,
useSpot: false
useSpot: false,
ingressPorts: [{ port: 22, protocol: "tcp" }],
}

export const azureInput: PulumiStackConfigAzure = {
Expand All @@ -24,7 +25,8 @@ export const azureInput: PulumiStackConfigAzure = {
rootDiskType: AZURE_SUPPORTED_DISK_TYPES.STANDARD_LRS,
publicSshKeyContent: pubKey,
publicIpType: PUBLIC_IP_TYPE_STATIC,
useSpot: false
useSpot: false,
securityGroupPorts: [{ port: 22, protocol: "tcp" }],
}

export const gcpInput: PulumiStackConfigGcp = {
Expand All @@ -36,5 +38,6 @@ export const gcpInput: PulumiStackConfigGcp = {
rootDiskSize: 100,
publicSshKeyContent: pubKey,
publicIpType: PUBLIC_IP_TYPE_STATIC,
useSpot: false
}
useSpot: false,
firewallAllowPorts: [{ port: 22, protocol: "tcp" }],
}

0 comments on commit 1b5e294

Please sign in to comment.