Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for rpm (0.08 sec)

  1. releasenotes/notes/rpm-builds.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: installation
    issue:
    - 9117
    releaseNotes:
    - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 11 21:20:58 UTC 2020
    - 173 bytes
    - Viewed (0)
  2. pkg/test/echo/docker/Dockerfile.app_sidecar_centos_8

    COPY certs/                           /var/lib/istio/
    COPY certs/default/                   /var/run/secrets/istio/
    
    # Install the sidecar components
    COPY istio-sidecar.rpm  /tmp/istio-sidecar.rpm
    RUN rpm -vi /tmp/istio-sidecar.rpm && rm /tmp/istio-sidecar.rpm
    
    # Sudoers used to allow tcpdump and other debug utilities.
    COPY sudoers /etc/sudoers
    
    # Install the Echo application
    COPY echo-start.sh /usr/local/bin/echo-start.sh
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 22:55:51 UTC 2024
    - 839 bytes
    - Viewed (0)
  3. tools/packaging/packaging.mk

    ${TARGET_OUT_LINUX}/release/istio-sidecar.deb: | ${TARGET_OUT_LINUX} deb/fpm
    ${TARGET_OUT_LINUX}/release/istio-sidecar.rpm: | ${TARGET_OUT_LINUX} rpm/fpm
    
    # Package the sidecar rpm file.
    rpm/fpm:
    	rm -f ${TARGET_OUT_LINUX}/release/istio-sidecar.rpm
    	fpm -s dir -t rpm -n ${SIDECAR_PACKAGE_NAME} -p ${TARGET_OUT_LINUX}/release/istio-sidecar.rpm --version $(PACKAGE_VERSION) -f \
    		--url http://istio.io  \
    		--license Apache \
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 06 19:54:32 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  4. pkg/test/echo/docker/echo-start.sh

    # This exploits the fact the images remove the installer once its installed.
    # This is a horrible idea for production images, but these are just for tests.
    [[ -f /tmp/istio-sidecar.rpm ]] && rpm -vi /tmp/istio-sidecar.rpm && rm /tmp/istio-sidecar.rpm
    [[ -f /tmp/istio-sidecar.deb ]] && dpkg -i /tmp/istio-sidecar.deb && rm /tmp/istio-sidecar.deb
    
    # IF ECHO_ARGS is unset, make it an empty string.
    ECHO_ARGS=${ECHO_ARGS:-}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 05 19:04:25 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  5. pkg/test/framework/components/echo/kube/templates/vm_deployment.yaml

              # This is a horrible idea for production images, but these are just for tests.
              [[ -f /tmp/istio-sidecar.rpm ]] && sudo rpm -vi /tmp/istio-sidecar.rpm && sudo rm /tmp/istio-sidecar.rpm
              [[ -f /tmp/istio-sidecar.deb ]] && sudo dpkg -i /tmp/istio-sidecar.deb && sudo rm /tmp/istio-sidecar.deb
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 03 19:29:42 UTC 2024
    - 8K bytes
    - Viewed (0)
  6. tools/docker.yaml

      files:
      - tools/packaging/common/envoy_bootstrap.json
      - tests/testdata/certs
      - pkg/test/echo/docker/echo-start.sh
      - pkg/test/echo/docker/sudoers
      targets:
      - ${TARGET_OUT_LINUX}/release/istio-sidecar.rpm
      - ${TARGET_OUT_LINUX}/client
      - ${TARGET_OUT_LINUX}/server
    - name: app_sidecar_debian_12
      dockerfile: pkg/test/echo/docker/Dockerfile.app_sidecar
      files:
      - tools/packaging/common/envoy_bootstrap.json
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 12:26:52 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  7. Makefile.core.mk

    	bin/update_crds.sh
    
    #-----------------------------------------------------------------------------
    # Target: artifacts and distribution
    #-----------------------------------------------------------------------------
    # deb, rpm, etc packages
    include tools/packaging/packaging.mk
    
    #-----------------------------------------------------------------------------
    # Target: integration tests
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Jun 02 19:53:04 UTC 2024
    - 23.2K bytes
    - Viewed (0)
Back to top