Skip to content

Commit

Permalink
core: update iso images (#1071)
Browse files Browse the repository at this point in the history
* core: update iso images

Signed-off-by: Abiola Ibrahim <git@abiosoft.com>

* k3s: update version

Signed-off-by: Abiola Ibrahim <git@abiosoft.com>

* cli: fix colima list --profile

Signed-off-by: Abiola Ibrahim <git@abiosoft.com>

---------

Signed-off-by: Abiola Ibrahim <git@abiosoft.com>
  • Loading branch information
abiosoft authored Jul 20, 2024
1 parent 8d34919 commit 12c0c83
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion embedded/defaults/colima.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ kubernetes:
# Kubernetes version to use.
# This needs to exactly match a k3s version https://github.com/k3s-io/k3s/releases
# Default: latest stable release
version: v1.28.3+k3s2
version: v1.30.2+k3s1

# Additional args to pass to k3s https://docs.k3s.io/cli/server
# Default: traefik is disabled
Expand Down
2 changes: 1 addition & 1 deletion environment/container/kubernetes/kubernetes.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import (

const (
Name = "kubernetes"
DefaultVersion = "v1.30.0+k3s1"
DefaultVersion = "v1.30.2+k3s1"

ConfigKey = "kubernetes_config"
)
Expand Down
2 changes: 1 addition & 1 deletion environment/vm/lima/limautil/limautil.go
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ func getInstance(profileID string) (InstanceInfo, error) {
func Instances(ids ...string) ([]InstanceInfo, error) {
limaIDs := make([]string, len(ids))
for i := range ids {
limaIDs = append(limaIDs, config.Profile(ids[i]).ID)
limaIDs[i] = config.Profile(ids[i]).ID
}
args := append([]string{"list", "--json"}, limaIDs...)

Expand Down
8 changes: 4 additions & 4 deletions environment/vm/lima/yaml.go
Original file line number Diff line number Diff line change
Expand Up @@ -52,13 +52,13 @@ func newConf(ctx context.Context, conf config.Config) (l Config, err error) {
l.Images = append(l.Images,
File{
Arch: environment.AARCH64,
Location: "https://github.com/abiosoft/colima-core/releases/download/v0.6.9-1/ubuntu-24.04-minimal-cloudimg-arm64.qcow2",
Digest: "sha512:84149cfcae24066df809418afa3d458cd920798cb18ce2435786dad94365c1d1226acae95f04ae1f05720d597c9d76284df52f2a63c1f7a76d6b6d71d372d404",
Location: "https://github.com/abiosoft/colima-core/releases/download/v0.6.10/ubuntu-24.04-minimal-cloudimg-arm64.qcow2",
Digest: "sha512:d45218cde49119634c15d73e5349d339ad5bf2a2b47e9fd1071b26043e3e4471cd2adba5f51169fde41d91168d4a20a04eb6998cc516b36159641290ca18f8a7",
},
File{
Arch: environment.X8664,
Location: "https://github.com/abiosoft/colima-core/releases/download/v0.6.9-1/ubuntu-24.04-minimal-cloudimg-amd64.qcow2",
Digest: "sha512:be631c88a7bc54264ec34db97b8250e3d8aafd36deceda92ac232e1be339f3a27f658de86ec0c62ce55e23521a36c678013b5b6d1763c66a62583b3555f04af4",
Location: "https://github.com/abiosoft/colima-core/releases/download/v0.6.10/ubuntu-24.04-minimal-cloudimg-amd64.qcow2",
Digest: "sha512:6febd267db821317007198a9af51cc05781130354593d0c71788bfbfd18c0af7cf60cca000e90827ce213ee10df66dc8bd287a2170b6225de96a512b9641015a",
},
)

Expand Down

0 comments on commit 12c0c83

Please sign in to comment.