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

feat(civo-github): add gpu operator to allow use of GPU nodes #789

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
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
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,15 @@ metadata:
spec:
project: default
destination:
name: in-cluster
name: in-cluster
namespace: crossplane-system
source:
repoURL: https://charts.crossplane.io/stable
chart: crossplane
targetRevision: 1.12.2
targetRevision: 1.16.0
syncPolicy:
automated:
prune: true
selfHeal: true
syncOptions:
- CreateNamespace=true
- CreateNamespace=true
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,15 @@ metadata:
spec:
project: default
destination:
name: in-cluster
name: in-cluster
namespace: crossplane-system
source:
repoURL: https://charts.crossplane.io/stable
chart: crossplane
targetRevision: 1.12.2
targetRevision: 1.16.0
syncPolicy:
automated:
prune: true
selfHeal: true
syncOptions:
- CreateNamespace=true
- CreateNamespace=true
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,15 @@ metadata:
spec:
project: default
destination:
name: in-cluster
name: in-cluster
namespace: crossplane-system
source:
repoURL: https://charts.crossplane.io/stable
chart: crossplane
targetRevision: 1.12.2
targetRevision: 1.16.0
syncPolicy:
automated:
prune: true
selfHeal: true
syncOptions:
- CreateNamespace=true
- CreateNamespace=true
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,15 @@ metadata:
spec:
project: default
destination:
name: in-cluster
name: in-cluster
namespace: crossplane-system
source:
repoURL: https://charts.crossplane.io/stable
chart: crossplane
targetRevision: 1.12.2
targetRevision: 1.16.0
syncPolicy:
automated:
prune: true
selfHeal: true
syncOptions:
- CreateNamespace=true
- CreateNamespace=true
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,10 @@ spec:
envFrom:
- secretRef:
name: crossplane-secrets
volumeMounts:
- mountPath: /.cache
name: helmcache
volumes:
- name: helmcache
emptyDir:
sizeLimit: 500Mi
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ spec:
revisionActivationPolicy: Automatic
revisionHistoryLimit: 1
skipDependencyResolution: false

Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ kind: Workspace
metadata:
name: <WORKLOAD_CLUSTER_NAME>-infrastructure
spec:
providerConfigRef:
providerConfigRef:
name: <WORKLOAD_CLUSTER_NAME>
forProvider:
source: Remote
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,10 @@ spec:
source = "civo/civo"
version = "~> 1.1.0"
}
helm = {
source = "hashicorp/helm"
version = "~> 2.15.0"
}
}
}
provider "civo" {
Expand Down
2 changes: 1 addition & 1 deletion civo-github/terraform/civo/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ terraform {
}
required_providers {
civo = {
source = "civo/civo"
source = "civo/civo"
version = "~> 1.1.0"
}
}
Expand Down
Loading