Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 0.12.0 rc0 #73

Closed

Commits on May 20, 2024

  1. Use latest tag for ubi base image

    Signed-off-by: Spolti <[email protected]>
    spolti committed May 20, 2024
    Configuration menu
    Copy the full SHA
    a8467c0 View commit details
    Browse the repository at this point in the history

Commits on May 23, 2024

  1. Merge pull request opendatahub-io#59 from spolti/RHOAIENG-7291

    Use latest tag for ubi base image
    openshift-merge-bot[bot] authored May 23, 2024
    Configuration menu
    Copy the full SHA
    bf6a789 View commit details
    Browse the repository at this point in the history

Commits on May 27, 2024

  1. chore: Use latest ubi image tag (kserve#140)

    #### Motivation
    
    
    #### Modifications
    
    
    #### Result
    
    Signed-off-by: Spolti <[email protected]>
    spolti authored May 27, 2024
    Configuration menu
    Copy the full SHA
    0bd905c View commit details
    Browse the repository at this point in the history

Commits on May 29, 2024

  1. Merge pull request opendatahub-io#61 from kserve/main

    [pull] main from kserve:main
    openshift-merge-bot[bot] authored May 29, 2024
    Configuration menu
    Copy the full SHA
    620a755 View commit details
    Browse the repository at this point in the history

Commits on Jun 11, 2024

  1. ci: Add manual build trigger

    Signed-off-by: Christian Kadner <[email protected]>
    ckadner authored Jun 11, 2024
    Configuration menu
    Copy the full SHA
    ec28cb5 View commit details
    Browse the repository at this point in the history

Commits on Jun 12, 2024

  1. Merge pull request opendatahub-io#62 from kserve/main

    [pull] main from kserve:main
    openshift-merge-bot[bot] authored Jun 12, 2024
    Configuration menu
    Copy the full SHA
    5ba2abc View commit details
    Browse the repository at this point in the history
  2. ci: Add nightly build twice a week (kserve#141)

    Signed-off-by: Christian Kadner <[email protected]>
    ckadner authored Jun 12, 2024
    Configuration menu
    Copy the full SHA
    af8c300 View commit details
    Browse the repository at this point in the history

Commits on Jun 13, 2024

  1. Merge pull request opendatahub-io#63 from kserve/main

    [pull] main from kserve:main
    openshift-merge-bot[bot] authored Jun 13, 2024
    Configuration menu
    Copy the full SHA
    cf3fcf6 View commit details
    Browse the repository at this point in the history

Commits on Jul 22, 2024

  1. Use SSL context/params in RPP for HTTPS

    Signed-off-by: Rui Vieira <[email protected]>
    ruivieira committed Jul 22, 2024
    Configuration menu
    Copy the full SHA
    549b450 View commit details
    Browse the repository at this point in the history
  2. feat: Add SSL context loading

    Signed-off-by: Rui Vieira <[email protected]>
    ruivieira committed Jul 22, 2024
    Configuration menu
    Copy the full SHA
    ed8161a View commit details
    Browse the repository at this point in the history

Commits on Aug 1, 2024

  1. Merge pull request opendatahub-io#65 from ruivieira/RHOAIENG-4963-b

    RHOAIENG-4963: ModelMesh should support TLS in payload processors
    openshift-merge-bot[bot] authored Aug 1, 2024
    Configuration menu
    Copy the full SHA
    2405dba View commit details
    Browse the repository at this point in the history

Commits on Aug 7, 2024

  1. Updated kustomize labels to kustomize v5 syntax

    Signed-off-by: Killian Golds <[email protected]>
    KillianGolds committed Aug 7, 2024
    Configuration menu
    Copy the full SHA
    a021973 View commit details
    Browse the repository at this point in the history

Commits on Aug 13, 2024

  1. Merge pull request opendatahub-io#67 from KillianGolds/midstream-kv5C…

    …hanges
    
    Updating outdated Kustomize syntax to be in line with Kustomize v5 syntax
    openshift-merge-bot[bot] authored Aug 13, 2024
    Configuration menu
    Copy the full SHA
    13ae7c8 View commit details
    Browse the repository at this point in the history

Commits on Aug 16, 2024

  1. chore: Update to Kustomize v5 syntax (kserve#149)

    ### Motivation
    The main motivation for this update is to keep our manifests up to date
    with Kustomize v5. This ensures that we are using the latest syntax,
    which improves the compatibility and maintainability of our Kubernetes
    configurations.
    
    ### Modifications
    
    #### 1. Replacements Section:
    - Added a replacements section to dynamically change values in the
    deployment configuration.
    - Corrected the field path to ensure the replacement does not break when
    patches are used.
    - Specifically, it replaces the environment variable value in the
    model-mesh deployment with the service name.
    
    **Old Syntax:**
    ```
    vars:
      - name: MM_SERVICE_NAME
        objref:
          kind: Service
          name: model-mesh
          apiVersion: v1
        fieldref:
          fieldpath: metadata.name
    ```
    **New Syntax:**
    ```
    replacements:
    - source:
        kind: Service
        name: model-mesh
        fieldPath: metadata.name
      targets:
      - select:
          kind: Deployment
          name: model-mesh
        fieldPaths:
        - spec.template.spec.containers.0.env.[name=MM_SERVICE_NAME].value
    ```
    #### 2. Patch Paths:
    - I updated the commented-out patches section to use the correct path
    syntax when they are needed.
    ```
    # patches:
    #  - path: patches/etcd.yaml
    #  - path: patches/logger.yaml
    #  - path: patches/tls.yaml
    #  - path: patches/uds.yaml
    #  - path: patches/max_msg_size.yaml
    #  - path: patches/prometheus_metrics.yaml
    ```
    ### How I Tested
    To ensure the correctness of these changes, the following steps were
    taken:
    
    1. Ran the kustomize build command on the original manifests to produce
    the current state of the resources.
    2. Updated to Kustomize v5 labels.
    3. Ran the kustomize build command again on the updated manifests.
    4. Compared the output of the kustomize build command from both the
    original and updated manifests.
    5. Verified that there was no difference between the outputs.
    
    Gist of all kustomize build pre-changes and post-changes:
    https://gist.github.com/KillianGolds/522e22734d547a90e69a619498ab71ca
    
    ### Result
    These changes ensure that our Kustomize configuration is up to date with
    version 5. Everything works as it should, with no changes to
    functionality other than updated syntax and corrected field paths for
    replacements and patches.
    
    ---------
    
    Signed-off-by: Killian Golds <[email protected]>
    KillianGolds authored Aug 16, 2024
    Configuration menu
    Copy the full SHA
    3a44450 View commit details
    Browse the repository at this point in the history

Commits on Aug 26, 2024

  1. sync branch 'kserve/main' into odh/main

    Signed-off-by: Spolti <[email protected]>
    spolti committed Aug 26, 2024
    Configuration menu
    Copy the full SHA
    2a68221 View commit details
    Browse the repository at this point in the history
  2. Merge pull request opendatahub-io#70 from spolti/sync2

    sync kserve/main onto odh/main
    israel-hdez authored Aug 26, 2024
    Configuration menu
    Copy the full SHA
    aa7089a View commit details
    Browse the repository at this point in the history

Commits on Oct 1, 2024

  1. Configuration menu
    Copy the full SHA
    5a3ed0e View commit details
    Browse the repository at this point in the history