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
4 changes: 2 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
# Install Go!
- uses: actions/setup-go@v3
with:
go-version: "~1.20"
go-version: "~1.22"

- name: Test
run: go test ./...
run: go test ./... -race
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:

- uses: actions/setup-go@v3
with:
go-version: "~1.20"
go-version: "~1.22"

- name: Get Version
run: echo "version=$(./scripts/version.sh)" >> $GITHUB_OUTPUT
Expand Down
272 changes: 149 additions & 123 deletions go.mod

Large diffs are not rendered by default.

1,146 changes: 523 additions & 623 deletions go.sum

Large diffs are not rendered by default.

8 changes: 5 additions & 3 deletions helm/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,8 @@ nodeSelector: {}
# affinity -- Allows specifying an affinity rule for the Deployment.
# The default rule prefers to schedule coder pods on different
# nodes, which is only applicable if coder.replicaCount is greater than 1.
affinity: {}
affinity:
{}
# podAntiAffinity:
# preferredDuringSchedulingIgnoredDuringExecution:
# - podAffinityTerm:
Expand All @@ -78,12 +79,13 @@ affinity: {}

# tolerations -- Tolerations for tainted nodes.
# See: https://kubernetes.io/docs/concepts/configuration/taint-and-toleration/
tolerations: {}
tolerations:
{}
# - key: "key"
# operator: "Equal"
# value: "value"
# effect: "NoSchedule"

# labels -- The pod labels for coder-logstream-kube. See:
# https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/
labels: {}
labels: {}
Loading