Evgeny Agafonov

Results 28 comments of Evgeny Agafonov

Add new `StorageClass`. Because was problem like [this](https://stackoverflow.com/questions/51946393/kubernetes-pod-warning-1-nodes-had-volume-node-affinity-conflict). ``` allowVolumeExpansion: true apiVersion: storage.k8s.io/v1 kind: StorageClass metadata: annotations: storageclass.kubernetes.io/is-default-class: "true" labels: addonmanager.kubernetes.io/mode: EnsureExists name: uffizzi-standard parameters: type: pd-standard provisioner: kubernetes.io/gce-pd reclaimPolicy:...

### HOW TO TEST: ### * Create a preview * Create some data * Update preview * Check that data is exists We can use this compose file for check...

### TEST REMOVE UNUSED VOLUMES: ### * create volume (for example) ``` services: web: image: zipofar/uffizzi_test_rails_simple:latest volumes: - share_db:/db volumes: share_db: x-uffizzi: ingress: service: web port: 3000 ``` * Add...

Long syntax for named volume: ``` services: web: image: zipofar/uffizzi_test_rails_simple:latest volumes: - source: share_db target: /db read_only: true volumes: share_db: x-uffizzi: ingress: service: web port: 3000 ```

Read only for short syntax: ``` services: web: image: zipofar/uffizzi_test_rails_simple:latest volumes: - share_db:/db:ro volumes: share_db: x-uffizzi: ingress: service: web port: 3000 ``` ``` services: web: image: zipofar/uffizzi_test_rails_simple:latest volumes: - /db:ro...

I see two variants to solve this issue: 1. Send files to some storage and than copy it to container with volume 2. Explicitly define container which contain files for...

@axisofentropy At this point I suppose that config and env files does not work with GHA. Because we do not have project files in CLI container. We just provide cached...

And one more question. Our controller receive base64 content for volumes. But how this content can be sent to InitContainer? I thought that we can add pvc for controller and...

https://sentry.io/organizations/uffizzi-cloud/issues/3495320049/?environment=production&project=1826818&query=is%3Aunresolved&statsPeriod=24h

If we do not define correct first param for `healthcheck: test` `REQUIRED_START_COMMANDS = ['NONE', 'CMD', 'CMD-SHELL']` ``` services: nginx: image: zipofar/my_nginx_simple:latest healthcheck: test: - ls interval: 10s timeout: 5s start_period:...