Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[release/v1.57] Update AMI filter for rocky linux (#1803) / Bump OSM to 1.3.6 #1807

Merged
merged 2 commits into from
Jun 5, 2024
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
6 changes: 3 additions & 3 deletions examples/operating-system-manager.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Source: https://github.com/kubermatic/operating-system-manager/tree/v0.5.0/deploy
# Source: https://github.com/kubermatic/operating-system-manager/tree/v1.3.6/deploy
---
apiVersion: apiextensions.k8s.io/v1
kind: CustomResourceDefinition
Expand Down Expand Up @@ -990,7 +990,7 @@ spec:
spec:
serviceAccountName: operating-system-manager-webhook
containers:
- image: quay.io/kubermatic/operating-system-manager:v1.3.4
- image: quay.io/kubermatic/operating-system-manager:v1.3.6
imagePullPolicy: Always
name: webhook
command:
Expand Down Expand Up @@ -1318,7 +1318,7 @@ spec:
spec:
serviceAccountName: operating-system-manager
containers:
- image: quay.io/kubermatic/operating-system-manager:v1.3.4
- image: quay.io/kubermatic/operating-system-manager:v1.3.6
imagePullPolicy: Always
name: operating-system-manager
command:
Expand Down
4 changes: 2 additions & 2 deletions pkg/cloudprovider/provider/aws/provider.go
Original file line number Diff line number Diff line change
Expand Up @@ -115,12 +115,12 @@ var (
},
providerconfigtypes.OperatingSystemRockyLinux: {
awstypes.CPUArchitectureX86_64: {
description: "*Rocky-8-ec2-8*.x86_64",
description: "*Rocky-8-EC2-*.x86_64",
// The AWS marketplace ID from Rocky Linux Community Platform Engineering (CPE)
owner: "792107900819",
},
awstypes.CPUArchitectureARM64: {
description: "*Rocky-8-ec2-8*.aarch64",
description: "*Rocky-8-EC2-*.aarch64",
// The AWS marketplace ID from Rocky Linux Community Platform Engineering (CPE)
owner: "792107900819",
},
Expand Down