All Downloads are FREE. Search and download functionalities are using the official Maven repository.

atform.apps.mattermost.4.0.190.source-code.deployment.yml Maven / Gradle / Ivy

There is a newer version: 4.0.208
Show newest version
spec:
  replicas: 1
  template:
    metadata:
      name: mattermost-app
      labels:
        app: mattermost
        tier: app
    spec:
      containers:
      - name: mattermost-app
        image: fabric8/mattermost:${mattermost.version}
        env:
        - name: MM_SQLSETTINGS_DATASOURCE
          valueFrom:
            secretKeyRef:
              name: mattermost
              key: mm-datasource
        readinessProbe:
          httpGet:
            path: "/"
            port: 8065
          initialDelaySeconds: 10
          timeoutSeconds: 10
        livenessProbe:
          httpGet:
            path: "/"
            port: 8065
          initialDelaySeconds: 60
          timeoutSeconds: 10
        volumeMounts:
        - name: mattermost-data
          mountPath: /mattermost/data/
        - name: mattermost-config
          mountPath: /mattermost/config/
      volumes:
      - name: mattermost-data
        persistentVolumeClaim:
          claimName: mattermost-data
      - name: mattermost-config
        configMap:
          name: mattermost
          items:
          - key: config.json
            path: config.json




© 2015 - 2024 Weber Informatics LLC | Privacy Policy