- Complete project structure with Next.js frontend - GraphQL API backend with Apollo Server - Portal application with NextAuth - Crossplane Proxmox provider - GitOps configurations - CI/CD pipelines - Testing infrastructure (Vitest, Jest, Go tests) - Error handling and monitoring - Security hardening - UI component library - Documentation
27 lines
550 B
YAML
27 lines
550 B
YAML
apiVersion: proxmox.yourorg.io/v1alpha1
|
|
kind: ProxmoxVM
|
|
metadata:
|
|
name: web-server-01
|
|
namespace: default
|
|
spec:
|
|
forProvider:
|
|
node: pve1
|
|
name: web-server-01
|
|
cpu: 4
|
|
memory: 8Gi
|
|
disk: 100Gi
|
|
storage: local-lvm
|
|
network: vmbr0
|
|
image: ubuntu-22.04-cloud
|
|
site: us-east-1
|
|
userData: |
|
|
#cloud-config
|
|
users:
|
|
- name: admin
|
|
ssh-authorized-keys:
|
|
- ssh-rsa AAAAB3NzaC1yc2E...
|
|
sshKeys:
|
|
- ssh-rsa AAAAB3NzaC1yc2E...
|
|
providerConfigRef:
|
|
name: proxmox-provider-config
|