Files
proxmox-api-simulator/helm/proxmox-api-simulator/templates/NOTES.txt
T
Sergey Antropoff 777926487b Add a stateful Proxmox API console and broad handler coverage beyond the
initial QEMU slice, backed by imported contracts for majors 6–9.
- Implement durable handlers for access/auth, cluster, LXC, storage, HA,
  firewall, Ceph, SDN, ACME, notifications, pools, mapping, and node ops
- Serve an interactive Web UI with catalog browsing, demo seed controls,
  and OpenAPI/help surfaces
- Bundle PVE 6.4-15, 7.4-16, and 8.4.5 contract revisions alongside 9.2.3
- Support in-memory runtime contract Apply (POST /ui/api/contract/apply)
  so /version and /api2 routes follow the selected major until restart
- Expand seed profiles (including demo-cluster), migrations 007–008, TLS
  gateway config, Compose/Makefile tooling, and compatibility evidence
- Tighten .gitignore for macOS, hidden directories (.*/), and local secrets
2026-07-16 01:08:01 +03:00

33 lines
1.1 KiB
Plaintext

proxmox-api-simulator {{ .Chart.AppVersion }} installed as release "{{ .Release.Name }}".
Image: {{ include "proxmox-api-simulator.image" . }}
1. Check readiness:
kubectl -n {{ .Release.Namespace }} get pods -l "app.kubernetes.io/instance={{ .Release.Name }}"
2. Access the API / Web UI:
{{- if .Values.ingress.enabled }}
{{- range .Values.ingress.hosts }}
https://{{ .host }}/
{{- end }}
{{- if .Values.certManager.enabled }}
TLS certificate is requested via cert-manager ClusterIssuer
"{{ include "proxmox-api-simulator.clusterIssuer" . }}".
{{- end }}
{{- else }}
kubectl -n {{ .Release.Namespace }} port-forward svc/{{ include "proxmox-api-simulator.fullname" . }} 8006:{{ .Values.service.port }}
Then open http://127.0.0.1:8006/
{{- end }}
3. Seed laboratory data (if seed.enabled was false):
kubectl -n {{ .Release.Namespace }} exec deploy/{{ include "proxmox-api-simulator.fullname" . }} -- \
python -m app.simulation.seed_cli
Or upgrade with --set seed.enabled=true,seed.profile=small
Default lab login after seeding: root@pam / secret
Change secret.ticketSigningKey before exposing the cluster publicly.