Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 13 of 13 for JOB_NAME (0.18 sec)

  1. .github/workflows/mint/minio-resiliency.yaml

    version: '3.7'
    
    # Settings and configurations that are common for all containers
    x-minio-common: &minio-common
      image: quay.io/minio/minio:${JOB_NAME}
      command: server --console-address ":9001" http://minio{1...4}/rdata{1...2}
      expose:
        - "9000"
        - "9001"
      environment:
        MINIO_CI_CD: "on"
        MINIO_ROOT_USER: "minio"
        MINIO_ROOT_PASSWORD: "minio123"
        MINIO_KMS_SECRET_KEY: "my-minio-key:OSMM+vkKUTCvQs9YL/CVMIMt43HFhkUpqJxTmGl6rYw="
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 22 23:07:14 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  2. .github/workflows/mint.yml

          - name: The job must cleanup
            if: ${{ always() }}
            run: |
              export JOB_NAME=${{ steps.vars.outputs.sha_short }}
              for mode in $(echo compress-encrypt pools erasure); do
                 docker-compose -f ${GITHUB_WORKSPACE}/.github/workflows/mint/minio-${mode}.yaml down || true
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 04 15:12:57 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  3. hack/run-prometheus-on-etcd-scrapes.sh

    echo "Prometheus will listen on port 9090 and scrape historic metrics from http://${IPADDR}:9091/metrics"
    sleep 1
    echo
    
    cat > "$CONFIG" <<EOF
    global:
      scrape_interval: 30s
    
    scrape_configs:
    
    - job_name: local
      static_configs:
      - targets: ['${IPADDR}:9091']
    EOF
    
    "${SCRIPT_ROOT}/serve-prom-scrapes.sh" 9091 "$UNPACKDIR" &
    SERVER_PID=$!
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 08 20:28:05 UTC 2021
    - 2.9K bytes
    - Viewed (0)
Back to top