Unverified Commit cda17a8b authored by Kroese's avatar Kroese Committed by GitHub
Browse files

build: Update links (#15)

parent 4349e3ec
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -27,7 +27,7 @@ body:
    id: log
    attributes:
      label: Docker log
      description: The logfile of the container (as shown by `docker logs osx`).
      description: The logfile of the container (as shown by `docker logs macos`).
    validations:
      required: true
  - type: textarea
+1 −1
Original line number Diff line number Diff line
@@ -29,7 +29,7 @@ body:
    id: log
    attributes:
      label: Docker log
      description: The logfile of the container (as shown by `docker logs osx`).
      description: The logfile of the container (as shown by `docker logs macos`).
    validations:
      required: true
  - type: textarea
+3 −3
Original line number Diff line number Diff line
@@ -6,14 +6,14 @@ body:
  - type: checkboxes
    attributes:
      label: Is your question not already answered in the FAQ?
      description: Please read the [FAQ](https://github.com/dockur/osx/blob/master/readme.md) carefully to avoid asking duplicate questions.
      description: Please read the [FAQ](https://github.com/dockur/macos/blob/master/readme.md) carefully to avoid asking duplicate questions.
      options:
      - label: I made sure the question is not listed in the [FAQ](https://github.com/dockur/osx/blob/master/readme.md).
      - label: I made sure the question is not listed in the [FAQ](https://github.com/dockur/macos/blob/master/readme.md).
        required: true
  - type: checkboxes
    attributes:
      label: Is this a general question and not a technical issue?
      description: For questions related to issues you must use the [technical issue](https://github.com/dockur/osx/issues/new?assignees=&labels=&projects=&template=1-issue.yml) form instead. It contains all the right fields (system info, logfiles, etc.) we need in order to be able to help you.
      description: For questions related to issues you must use the [technical issue](https://github.com/dockur/macos/issues/new?assignees=&labels=&projects=&template=1-issue.yml) form instead. It contains all the right fields (system info, logfiles, etc.) we need in order to be able to help you.
      options:
      - label: I am sure my question is not about a technical issue.
        required: true
+2 −2
Original line number Diff line number Diff line
services:
  osx:
    image: dockurr/osx
    container_name: osx
    image: dockurr/macos
    container_name: macos
    environment:
      VERSION: "ventura"
    devices:
+8 −8
Original line number Diff line number Diff line
apiVersion: v1
kind: PersistentVolumeClaim
metadata:
  name: osx-pvc
  name: macos-pvc
spec:
  accessModes:
    - ReadWriteOnce
@@ -12,14 +12,14 @@ spec:
apiVersion: v1
kind: Pod
metadata:
  name: osx
  name: macos
  labels:
    name: osx
    name: macos
spec:
  terminationGracePeriodSeconds: 120 # the Kubernetes default is 30 seconds and it may be not enough
  containers:
    - name: osx
      image: dockurr/osx
    - name: macos
      image: dockurr/macos
      ports:
        - containerPort: 8006
          protocol: TCP
@@ -45,16 +45,16 @@ spec:
  volumes:
    - name: storage
      persistentVolumeClaim:
        claimName: osx-pvc
        claimName: macos-pvc
---
apiVersion: v1
kind: Service
metadata:
  name: osx
  name: macos
spec:
  type: NodePort
  selector:
    name: osx
    name: macos
  ports:
    - name: tcp-8006
      protocol: TCP
Loading