deployment.yaml 509 B

12345678910111213141516171819202122
  1. apiVersion: apps/v1
  2. kind: Deployment
  3. metadata:
  4. name: firefox
  5. spec:
  6. template:
  7. spec:
  8. initContainers:
  9. - name: wait-proxy
  10. image: busybox
  11. command: ["sh", "-c", "nc -z windows.windows 1080"]
  12. containers:
  13. - name: firefox
  14. volumeMounts:
  15. - mountPath: /etc/firefox-flake/home.nix
  16. subPath: home.nix
  17. name: nix-home-configuration
  18. volumes:
  19. - name: nix-home-configuration
  20. configMap:
  21. name: nix-home-configuration