Skip to content

Commit

Permalink
refactor: apply formatter
Browse files Browse the repository at this point in the history
  • Loading branch information
blacha committed Oct 31, 2023
1 parent 8854600 commit 83fcb89
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 17 deletions.
13 changes: 6 additions & 7 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
{
"extends": "@linzjs/style/tsconfig.base.json",
"compilerOptions": {
"target": "ES2022",
"lib": ["ES2022"],
"noEmit": true
}
"extends": "@linzjs/style/tsconfig.base.json",
"compilerOptions": {
"target": "ES2022",
"lib": ["ES2022"],
"noEmit": true
}
}
20 changes: 10 additions & 10 deletions workflows/test/list.arm.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,21 +31,21 @@ spec:
value: '.tiff?$'
- name: aws-list

# Request a SPOT & ARM64
# Request a SPOT & ARM64
nodeSelector:
karpenter.sh/capacity-type: 'spot'
kubernetes.io/arch: "arm64"
kubernetes.io/arch: 'arm64'

# Ensure the containers tolerate the taints that will be put on them
tolerations:
- key: "kubernetes.io/arch"
operator: "Equal"
value: "arm64"
effect: "NoSchedule"
- key: "karpenter.sh/capacity-type"
operator: "Equal"
value: "spot"
effect: "NoSchedule"
- key: 'kubernetes.io/arch'
operator: 'Equal'
value: 'arm64'
effect: 'NoSchedule'
- key: 'karpenter.sh/capacity-type'
operator: 'Equal'
value: 'spot'
effect: 'NoSchedule'

inputs:
parameters:
Expand Down

0 comments on commit 83fcb89

Please sign in to comment.