Skip to content

Commit

Permalink
chore: upgrade to agent api v2
Browse files Browse the repository at this point in the history
  • Loading branch information
coadler committed Jun 4, 2024
1 parent 2c02800 commit be60b28
Show file tree
Hide file tree
Showing 9 changed files with 1,304 additions and 922 deletions.
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

0 comments on commit be60b28

Please sign in to comment.