Skip to content

[TT-11549/TT-11597] Auto generated from templates by gromit#6138

Merged
jeffy-mathew merged 3 commits into
masterfrom
releng/master
Mar 13, 2024
Merged

[TT-11549/TT-11597] Auto generated from templates by gromit#6138
jeffy-mathew merged 3 commits into
masterfrom
releng/master

Conversation

@jeffy-mathew

@jeffy-mathew jeffy-mathew commented Mar 12, 2024

Copy link
Copy Markdown
Contributor

User description

Description

  • remove python from official Tyk docker image.
  • extend official gateway image to install python and run python coprocess smoke tests

Related Issue

https://tyktech.atlassian.net/browse/TT-11549
https://tyktech.atlassian.net/browse/TT-11597

Motivation and Context

How This Has Been Tested

Screenshots (if appropriate)

Types of changes

  • Bug fix (non-breaking change which fixes an issue)
  • New feature (non-breaking change which adds functionality)
  • Breaking change (fix or feature that would cause existing functionality to change)
  • Refactoring or add test (improvements in base code or adds test coverage to functionality)

Checklist

  • I ensured that the documentation is up to date
  • I explained why this PR updates go.mod in detail with reasoning why it's required
  • I would like a code coverage CI quality gate exception and have explained why

Type

enhancement


Description

  • Removed Python installation steps from ci/Dockerfile.std, reducing CVE surface and aligning with the goal to remove Python from Tyk docker images.
  • Updated generation timestamps across multiple scripts and configuration files, ensuring they reflect the latest generation date.
  • Simplified artifact naming in .github/workflows/release.yml and removed the override option for cleaner and more straightforward CI/CD pipeline management.

Changes walkthrough

Relevant files
Configuration changes
8 files
pc.sh
Update Generation Timestamp in pc.sh                                         

ci/bin/pc.sh

  • Updated generation timestamp.
+1/-1     
unlock-agent.sh
Update Generation Timestamp in unlock-agent.sh                     

ci/bin/unlock-agent.sh

  • Updated generation timestamp.
+1/-1     
before_install.sh
Update Generation Timestamp in before_install.sh                 

ci/install/before_install.sh

  • Updated generation timestamp.
+1/-1     
post_install.sh
Update Generation Timestamp in post_install.sh                     

ci/install/post_install.sh

  • Updated generation timestamp.
+1/-1     
post_remove.sh
Update Generation Timestamp in post_remove.sh                       

ci/install/post_remove.sh

  • Updated generation timestamp.
+1/-1     
post_trans.sh
Update Generation Timestamp in post_trans.sh                         

ci/install/post_trans.sh

  • Updated generation timestamp.
+1/-1     
release.yml
Update and Simplify Workflow Artifact Naming                         

.github/workflows/release.yml

  • Updated generation timestamp.
  • Simplified artifact naming and removed override option.
  • +3/-5     
    goreleaser.yml
    Update Generation Timestamp in goreleaser.yml                       

    ci/goreleaser/goreleaser.yml

    • Updated generation timestamp.
    +1/-1     
    Enhancement
    1 files
    Dockerfile.std
    Remove Python Installation from Dockerfile                             

    ci/Dockerfile.std

  • Updated generation timestamp.
  • Removed Python installation steps.
  • Removed unnecessary file deletions.
  • +1/-4     

    PR-Agent usage:
    Comment /help on the PR to get a list of all available PR-Agent tools and their descriptions

    @jeffy-mathew
    jeffy-mathew requested a review from a team as a code owner March 12, 2024 08:22
    @github-actions

    Copy link
    Copy Markdown
    Contributor

    API Changes

    no api changes detected

    @github-actions

    Copy link
    Copy Markdown
    Contributor

    PR Description updated to latest commit (6877245)

    @github-actions

    Copy link
    Copy Markdown
    Contributor

    PR Review

    ⏱️ Estimated effort to review [1-5]

    2, because the changes are mostly automated updates to timestamps and removal of Python dependencies from Dockerfiles. The changes are straightforward and do not involve complex logic or new features.

    🧪 Relevant tests

    No

    🔍 Possible issues

    Python Dependency Removal: Removing Python and its related packages from the Dockerfile could break functionalities relying on Python scripts or plugins. Ensure that all services and functionalities have been tested without Python dependencies.

    🔒 Security concerns

    No

    Code feedback:
    relevant fileci/Dockerfile.std
    suggestion      

    Consider using multi-stage builds to further reduce the image size and security footprint. Multi-stage builds allow you to separate the build-time dependencies from the runtime environment, resulting in cleaner and smaller images. [important]

    relevant lineFROM debian:bookworm-slim

    relevant fileci/Dockerfile.std
    suggestion      

    After removing Python dependencies, ensure that any scripts or functionalities that relied on Python are either removed or rewritten in a language present in the Docker image. This is crucial to avoid runtime errors. [important]

    relevant line-RUN apt-get install -y python3-setuptools libpython3-dev python3-dev python3-grpcio

    relevant file.github/workflows/release.yml
    suggestion      

    Consider parameterizing the artifact names with unique identifiers such as matrix parameters or run IDs to avoid potential conflicts or overwrites when running multiple jobs in parallel. [medium]

    relevant linename: docker-compose-logs-api

    relevant file.github/workflows/release.yml
    suggestion      

    Re-evaluate the removal of the override: true option for artifacts. If concurrent jobs generate artifacts with the same name, without overriding, you might end up with artifacts not being updated as expected. [medium]

    relevant line- override: true


    ✨ Review tool usage guide:

    Overview:
    The review tool scans the PR code changes, and generates a PR review. The tool can be triggered automatically every time a new PR is opened, or can be invoked manually by commenting on any PR.
    When commenting, to edit configurations related to the review tool (pr_reviewer section), use the following template:

    /review --pr_reviewer.some_config1=... --pr_reviewer.some_config2=...
    

    With a configuration file, use the following template:

    [pr_reviewer]
    some_config1=...
    some_config2=...
    
    Utilizing extra instructions

    The review tool can be configured with extra instructions, which can be used to guide the model to a feedback tailored to the needs of your project.

    Be specific, clear, and concise in the instructions. With extra instructions, you are the prompter. Specify the relevant sub-tool, and the relevant aspects of the PR that you want to emphasize.

    Examples for extra instructions:

    [pr_reviewer] # /review #
    extra_instructions="""
    In the 'possible issues' section, emphasize the following:
    - Does the code logic cover relevant edge cases?
    - Is the code logic clear and easy to understand?
    - Is the code logic efficient?
    ...
    """
    

    Use triple quotes to write multi-line instructions. Use bullet points to make the instructions more readable.

    How to enable\disable automation
    • When you first install PR-Agent app, the default mode for the review tool is:
    pr_commands = ["/review", ...]
    

    meaning the review tool will run automatically on every PR, with the default configuration.
    Edit this field to enable/disable the tool, or to change the used configurations

    Auto-labels

    The review tool can auto-generate two specific types of labels for a PR:

    • a possible security issue label, that detects possible security issues (enable_review_labels_security flag)
    • a Review effort [1-5]: x label, where x is the estimated effort to review the PR (enable_review_labels_effort flag)
    Extra sub-tools

    The review tool provides a collection of possible feedbacks about a PR.
    It is recommended to review the possible options, and choose the ones relevant for your use case.
    Some of the feature that are disabled by default are quite useful, and should be considered for enabling. For example:
    require_score_review, require_soc2_ticket, and more.

    Auto-approve PRs

    By invoking:

    /review auto_approve
    

    The tool will automatically approve the PR, and add a comment with the approval.

    To ensure safety, the auto-approval feature is disabled by default. To enable auto-approval, you need to actively set in a pre-defined configuration file the following:

    [pr_reviewer]
    enable_auto_approval = true
    

    (this specific flag cannot be set with a command line argument, only in the configuration file, committed to the repository)

    You can also enable auto-approval only if the PR meets certain requirements, such as that the estimated_review_effort is equal or below a certain threshold, by adjusting the flag:

    [pr_reviewer]
    maximal_review_effort = 5
    
    More PR-Agent commands

    To invoke the PR-Agent, add a comment using one of the following commands:

    • /review: Request a review of your Pull Request.
    • /describe: Update the PR title and description based on the contents of the PR.
    • /improve [--extended]: Suggest code improvements. Extended mode provides a higher quality feedback.
    • /ask <QUESTION>: Ask a question about the PR.
    • /update_changelog: Update the changelog based on the PR's contents.
    • /add_docs 💎: Generate docstring for new components introduced in the PR.
    • /generate_labels 💎: Generate labels for the PR based on the PR's contents.
    • /analyze 💎: Automatically analyzes the PR, and presents changes walkthrough for each component.

    See the tools guide for more details.
    To list the possible configuration parameters, add a /config comment.

    See the review usage page for a comprehensive guide on using this tool.

    @github-actions

    github-actions Bot commented Mar 12, 2024

    Copy link
    Copy Markdown
    Contributor

    PR Code Suggestions

    CategorySuggestions                                                                                                                                                       
    Enhancement
    Add the override: true option to the artifact upload steps to ensure artifacts are correctly overwritten.

    Consider adding the override: true option back to the actions/upload-artifact steps to
    ensure that artifacts are correctly overwritten if they already exist. This is especially
    important in workflows where artifacts might be re-uploaded due to reruns or updates in
    the PR. Without this option, you might end up with multiple versions of the same artifact,
    which can cause confusion or errors in subsequent steps that consume these artifacts.

    .github/workflows/release.yml [272-274]

     name: docker-compose-logs-api
     path: ${{ github.workspace }}/docker-compose-api.log
     retention-days: 3
    +override: true
     
    Best practice
    Combine RUN instructions and clean up apt cache to reduce Docker image size.

    It's recommended to clean up the apt cache and remove unnecessary packages in a single RUN
    instruction to reduce the Docker image size. This can be achieved by combining commands
    with && and ensuring that the apt cache is cleaned up at the end of the instruction. This
    approach minimizes the number of layers and the overall size of the Docker image.

    ci/Dockerfile.std [9-13]

     RUN apt-get update \
    -    && apt-get dist-upgrade -y ca-certificates
    -RUN dpkg --purge --force-remove-essential curl ncurses-base || true
    +    && apt-get dist-upgrade -y ca-certificates \
    +    && dpkg --purge --force-remove-essential curl ncurses-base || true \
    +    && apt-get clean \
    +    && rm -rf /var/lib/apt/lists/*
     
    Possible issue
    Reconsider the removal of Python-related packages to ensure functionality.

    Removing the installation of Python-related packages (python3-setuptools, libpython3-dev,
    python3-dev, python3-grpcio) may impact the functionality of Python plugins or any
    Python-based operations within the container. If these packages are necessary for your
    application's functionality, consider adding them back or ensure that their removal does
    not negatively affect your application.

    ci/Dockerfile.std [13]

    -# Remove some things to decrease CVE surface
    -RUN dpkg --purge --force-remove-essential curl ncurses-base || true
    +RUN apt-get update \
    +    && apt-get install -y python3-setuptools libpython3-dev python3-dev python3-grpcio \
    +    && dpkg --purge --force-remove-essential curl ncurses-base || true
     

    ✨ Improve tool usage guide:

    Overview:
    The improve tool scans the PR code changes, and automatically generates suggestions for improving the PR code. The tool can be triggered automatically every time a new PR is opened, or can be invoked manually by commenting on a PR.
    When commenting, to edit configurations related to the improve tool (pr_code_suggestions section), use the following template:

    /improve --pr_code_suggestions.some_config1=... --pr_code_suggestions.some_config2=...
    

    With a configuration file, use the following template:

    [pr_code_suggestions]
    some_config1=...
    some_config2=...
    
    Enabling\disabling automation

    When you first install the app, the default mode for the improve tool is:

    pr_commands = ["/improve --pr_code_suggestions.summarize=true", ...]
    

    meaning the improve tool will run automatically on every PR, with summarization enabled. Delete this line to disable the tool from running automatically.

    Utilizing extra instructions

    Extra instructions are very important for the improve tool, since they enable to guide the model to suggestions that are more relevant to the specific needs of the project.

    Be specific, clear, and concise in the instructions. With extra instructions, you are the prompter. Specify relevant aspects that you want the model to focus on.

    Examples for extra instructions:

    [pr_code_suggestions] # /improve #
    extra_instructions="""
    Emphasize the following aspects:
    - Does the code logic cover relevant edge cases?
    - Is the code logic clear and easy to understand?
    - Is the code logic efficient?
    ...
    """
    

    Use triple quotes to write multi-line instructions. Use bullet points to make the instructions more readable.

    A note on code suggestions quality
    • While the current AI for code is getting better and better (GPT-4), it's not flawless. Not all the suggestions will be perfect, and a user should not accept all of them automatically.
    • Suggestions are not meant to be simplistic. Instead, they aim to give deep feedback and raise questions, ideas and thoughts to the user, who can then use his judgment, experience, and understanding of the code base.
    • Recommended to use the 'extra_instructions' field to guide the model to suggestions that are more relevant to the specific needs of the project, or use the custom suggestions 💎 tool
    • With large PRs, best quality will be obtained by using 'improve --extended' mode.
    More PR-Agent commands

    To invoke the PR-Agent, add a comment using one of the following commands:

    • /review: Request a review of your Pull Request.
    • /describe: Update the PR title and description based on the contents of the PR.
    • /improve [--extended]: Suggest code improvements. Extended mode provides a higher quality feedback.
    • /ask <QUESTION>: Ask a question about the PR.
    • /update_changelog: Update the changelog based on the PR's contents.
    • /add_docs 💎: Generate docstring for new components introduced in the PR.
    • /generate_labels 💎: Generate labels for the PR based on the PR's contents.
    • /analyze 💎: Automatically analyzes the PR, and presents changes walkthrough for each component.

    See the tools guide for more details.
    To list the possible configuration parameters, add a /config comment.

    See the improve usage page for a more comprehensive guide on using this tool.

    @jeffy-mathew
    jeffy-mathew enabled auto-merge (squash) March 12, 2024 08:24
    @jeffy-mathew
    jeffy-mathew force-pushed the releng/master branch 3 times, most recently from 0802ad5 to 7f38e13 Compare March 12, 2024 08:30
    @jeffy-mathew
    jeffy-mathew requested a review from a team as a code owner March 12, 2024 11:15

    @asutosh asutosh left a comment

    Copy link
    Copy Markdown
    Contributor

    Choose a reason for hiding this comment

    The reason will be displayed to describe this comment to others. Learn more.

    LGTM

    @sonarqubecloud

    Copy link
    Copy Markdown

    Quality Gate Passed Quality Gate passed

    Issues
    0 New issues
    0 Accepted issues

    Measures
    0 Security Hotspots
    No data about Coverage
    0.0% Duplication on New Code

    See analysis details on SonarCloud

    @jeffy-mathew
    jeffy-mathew merged commit 165f4f1 into master Mar 13, 2024
    @jeffy-mathew
    jeffy-mathew deleted the releng/master branch March 13, 2024 10:27
    @jeffy-mathew

    Copy link
    Copy Markdown
    Contributor Author

    /release to release-5.3

    @jeffy-mathew

    Copy link
    Copy Markdown
    Contributor Author

    /release to release-5.3.0

    @tykbot

    tykbot Bot commented Mar 13, 2024

    Copy link
    Copy Markdown

    Working on it! Note that it can take a few minutes.

    1 similar comment
    @tykbot

    tykbot Bot commented Mar 13, 2024

    Copy link
    Copy Markdown

    Working on it! Note that it can take a few minutes.

    @tykbot

    tykbot Bot commented Mar 13, 2024

    Copy link
    Copy Markdown

    @jeffy-mathew Seems like there is conflict and it require manual merge.

    @tykbot

    tykbot Bot commented Mar 13, 2024

    Copy link
    Copy Markdown

    Still working...

    @tykbot

    tykbot Bot commented Mar 13, 2024

    Copy link
    Copy Markdown

    @jeffy-mathew Seems like there is conflict and it require manual merge.

    jeffy-mathew added a commit that referenced this pull request Mar 13, 2024
    <!-- Provide a general summary of your changes in the Title above -->
    
    Remove python from Tyk docker images
    
    <!-- This project only accepts pull requests related to open issues. -->
    <!-- If suggesting a new feature or change, please discuss it in an
    issue first. -->
    <!-- If fixing a bug, there should be an issue describing it with steps
    to reproduce. -->
    <!-- OSS: Please link to the issue here. Tyk: please create/link the
    JIRA ticket. -->
    
    <!-- Why is this change required? What problem does it solve? -->
    
    <!-- Please describe in detail how you tested your changes -->
    <!-- Include details of your testing environment, and the tests -->
    <!-- you ran to see how your change affects other areas of the code,
    etc. -->
    <!-- This information is helpful for reviewers and QA. -->
    
    <!-- What types of changes does your code introduce? Put an `x` in all
    the boxes that apply: -->
    
    - [ ] Bug fix (non-breaking change which fixes an issue)
    - [ ] New feature (non-breaking change which adds functionality)
    - [ ] Breaking change (fix or feature that would cause existing
    functionality to change)
    - [ ] Refactoring or add test (improvements in base code or adds test
    coverage to functionality)
    
    <!-- Go over all the following points, and put an `x` in all the boxes
    that apply -->
    <!-- If there are no documentation updates required, mark the item as
    checked. -->
    <!-- Raise up any additional concerns not covered by the checklist. -->
    
    - [ ] I ensured that the documentation is up to date
    - [ ] I explained why this PR updates go.mod in detail with reasoning
    why it's required
    - [ ] I would like a code coverage CI quality gate exception and have
    explained why
    
    ___
    
    enhancement
    
    ___
    
    - Removed Python installation steps from `ci/Dockerfile.std`, reducing
    CVE surface and aligning with the goal to remove Python from Tyk docker
    images.
    - Updated generation timestamps across multiple scripts and
    configuration files, ensuring they reflect the latest generation date.
    - Simplified artifact naming in `.github/workflows/release.yml` and
    removed the override option for cleaner and more straightforward CI/CD
    pipeline management.
    
    ___
    
    <table><thead><tr><th></th><th align="left">Relevant
    files</th></tr></thead><tbody><tr><td><strong>Configuration
    changes</strong></td><td><details><summary>8 files</summary><table>
    <tr>
      <td>
        <details>
    <summary><strong>pc.sh</strong><dd><code>Update Generation Timestamp in
    pc.sh</code>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
    &nbsp; &nbsp; &nbsp; </dd></summary>
    <hr>
    
    ci/bin/pc.sh
    - Updated generation timestamp.
    
    </details>
    
      </td>
    <td><a
    href="https://github.com/TykTechnologies/tyk/pull/6138/files#diff-1ab5821f23841af3afa7d4b35ebe5bbf5f16f73d24efc0bc7ee1c9f7d139c343">+1/-1</a>&nbsp;
    &nbsp; &nbsp; </td>
    </tr>
    
    <tr>
      <td>
        <details>
    <summary><strong>unlock-agent.sh</strong><dd><code>Update Generation
    Timestamp in unlock-agent.sh</code>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; </dd></summary>
    <hr>
    
    ci/bin/unlock-agent.sh
    - Updated generation timestamp.
    
    </details>
    
      </td>
    <td><a
    href="https://github.com/TykTechnologies/tyk/pull/6138/files#diff-dbe46dfd0ff7046494da4cb3ccfc6e7bba7c029f7ef9f0588d8926c585fcbd61">+1/-1</a>&nbsp;
    &nbsp; &nbsp; </td>
    </tr>
    
    <tr>
      <td>
        <details>
    <summary><strong>before_install.sh</strong><dd><code>Update Generation
    Timestamp in before_install.sh</code>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
    &nbsp; &nbsp; &nbsp; &nbsp; </dd></summary>
    <hr>
    
    ci/install/before_install.sh
    - Updated generation timestamp.
    
    </details>
    
      </td>
    <td><a
    href="https://github.com/TykTechnologies/tyk/pull/6138/files#diff-bd20b1ec658c22d4ecad9f2f07adf22d0076938f31d6cc09bc35c5ed0dc03807">+1/-1</a>&nbsp;
    &nbsp; &nbsp; </td>
    </tr>
    
    <tr>
      <td>
        <details>
    <summary><strong>post_install.sh</strong><dd><code>Update Generation
    Timestamp in post_install.sh</code>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; </dd></summary>
    <hr>
    
    ci/install/post_install.sh
    - Updated generation timestamp.
    
    </details>
    
      </td>
    <td><a
    href="https://github.com/TykTechnologies/tyk/pull/6138/files#diff-16f232a53df862d740ca45c0a608e598b38a7211da8325b9f74ceaecc00280c5">+1/-1</a>&nbsp;
    &nbsp; &nbsp; </td>
    </tr>
    
    <tr>
      <td>
        <details>
    <summary><strong>post_remove.sh</strong><dd><code>Update Generation
    Timestamp in post_remove.sh</code>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; </dd></summary>
    <hr>
    
    ci/install/post_remove.sh
    - Updated generation timestamp.
    
    </details>
    
      </td>
    <td><a
    href="https://github.com/TykTechnologies/tyk/pull/6138/files#diff-416f68b7ae081148bca909eab3eea39f9a41dd1f99271208954805c50de6d522">+1/-1</a>&nbsp;
    &nbsp; &nbsp; </td>
    </tr>
    
    <tr>
      <td>
        <details>
    <summary><strong>post_trans.sh</strong><dd><code>Update Generation
    Timestamp in post_trans.sh</code>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; </dd></summary>
    <hr>
    
    ci/install/post_trans.sh
    - Updated generation timestamp.
    
    </details>
    
      </td>
    <td><a
    href="https://github.com/TykTechnologies/tyk/pull/6138/files#diff-08b47bd93f3e0b3bcc919878bd798d4785a57d386fa05b46ca2a9b586e432c2e">+1/-1</a>&nbsp;
    &nbsp; &nbsp; </td>
    </tr>
    
    <tr>
      <td>
        <details>
    <summary><strong>release.yml</strong><dd><code>Update and Simplify
    Workflow Artifact Naming</code>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; </dd></summary>
    <hr>
    
    .github/workflows/release.yml
    <li>Updated generation timestamp.<br> <li> Simplified artifact naming
    and removed override option.<br>
    
    </details>
    
      </td>
    <td><a
    href="https://github.com/TykTechnologies/tyk/pull/6138/files#diff-87db21a973eed4fef5f32b267aa60fcee5cbdf03c67fafdc2a9b553bb0b15f34">+3/-5</a>&nbsp;
    &nbsp; &nbsp; </td>
    </tr>
    
    <tr>
      <td>
        <details>
    <summary><strong>goreleaser.yml</strong><dd><code>Update Generation
    Timestamp in goreleaser.yml</code>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; </dd></summary>
    <hr>
    
    ci/goreleaser/goreleaser.yml
    - Updated generation timestamp.
    
    </details>
    
      </td>
    <td><a
    href="https://github.com/TykTechnologies/tyk/pull/6138/files#diff-fb944a05459e4d713bc7541efd6e721cbe992a556353c09c4eb66a8eae9b856e">+1/-1</a>&nbsp;
    &nbsp; &nbsp; </td>
    </tr>
    
    </table></details></td></tr><tr><td><strong>Enhancement</strong></td><td><details><summary>1
    files</summary><table>
    <tr>
      <td>
        <details>
    <summary><strong>Dockerfile.std</strong><dd><code>Remove Python
    Installation from Dockerfile</code>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
    </dd></summary>
    <hr>
    
    ci/Dockerfile.std
    <li>Updated generation timestamp.<br> <li> Removed Python installation
    steps.<br> <li> Removed unnecessary file deletions.<br>
    
    </details>
    
      </td>
    <td><a
    href="https://github.com/TykTechnologies/tyk/pull/6138/files#diff-a3b3e9cabd877d0bd0fc8f20a9fdca7f44d102547a5fdfcd398ea01637e5dfae">+1/-4</a>&nbsp;
    &nbsp; &nbsp; </td>
    </tr>
    </table></details></td></tr></tr></tbody></table>
    
    ___
    
    > ✨ **PR-Agent usage**:
    >Comment `/help` on the PR to get a list of all available PR-Agent tools
    and their descriptions
    
    Co-authored-by: Gromit <policy@gromit>
    jeffy-mathew added a commit that referenced this pull request Mar 13, 2024
    <!-- Provide a general summary of your changes in the Title above -->
    
    Remove python from Tyk docker images
    
    <!-- This project only accepts pull requests related to open issues. -->
    <!-- If suggesting a new feature or change, please discuss it in an
    issue first. -->
    <!-- If fixing a bug, there should be an issue describing it with steps
    to reproduce. -->
    <!-- OSS: Please link to the issue here. Tyk: please create/link the
    JIRA ticket. -->
    
    <!-- Why is this change required? What problem does it solve? -->
    
    <!-- Please describe in detail how you tested your changes --> <!--
    Include details of your testing environment, and the tests --> <!-- you
    ran to see how your change affects other areas of the code, etc. -->
    <!-- This information is helpful for reviewers and QA. -->
    
    <!-- What types of changes does your code introduce? Put an `x` in all
    the boxes that apply: -->
    
    - [ ] Bug fix (non-breaking change which fixes an issue)
    - [ ] New feature (non-breaking change which adds functionality)
    - [ ] Breaking change (fix or feature that would cause existing
    functionality to change)
    - [ ] Refactoring or add test (improvements in base code or adds test
    coverage to functionality)
    
    <!-- Go over all the following points, and put an `x` in all the boxes
    that apply -->
    <!-- If there are no documentation updates required, mark the item as
    checked. -->
    <!-- Raise up any additional concerns not covered by the checklist. -->
    
    - [ ] I ensured that the documentation is up to date
    - [ ] I explained why this PR updates go.mod in detail with reasoning
    why it's required
    - [ ] I would like a code coverage CI quality gate exception and have
    explained why
    
    ___
    
    enhancement
    
    ___
    
    - Removed Python installation steps from `ci/Dockerfile.std`, reducing
    CVE surface and aligning with the goal to remove Python from Tyk docker
    images.
    - Updated generation timestamps across multiple scripts and
    configuration files, ensuring they reflect the latest generation date.
    - Simplified artifact naming in `.github/workflows/release.yml` and
    removed the override option for cleaner and more straightforward CI/CD
    pipeline management.
    
    ___
    
    <table><thead><tr><th></th><th align="left">Relevant
    files</th></tr></thead><tbody><tr><td><strong>Configuration
    changes</strong></td><td><details><summary>8 files</summary><table> <tr>
      <td>
        <details>
    <summary><strong>pc.sh</strong><dd><code>Update Generation Timestamp in
    pc.sh</code>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
    &nbsp; &nbsp; &nbsp; </dd></summary>
    <hr>
    
    ci/bin/pc.sh
    - Updated generation timestamp.
    
    </details>
    
      </td> <td><a
    
    href="https://github.com/TykTechnologies/tyk/pull/6138/files#diff-1ab5821f23841af3afa7d4b35ebe5bbf5f16f73d24efc0bc7ee1c9f7d139c343">+1/-1</a>&nbsp;
    &nbsp; &nbsp; </td>
    </tr>
    
    <tr>
      <td>
        <details>
    <summary><strong>unlock-agent.sh</strong><dd><code>Update Generation
    Timestamp in unlock-agent.sh</code>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; </dd></summary> <hr>
    
    ci/bin/unlock-agent.sh
    - Updated generation timestamp.
    
    </details>
    
      </td> <td><a
    
    href="https://github.com/TykTechnologies/tyk/pull/6138/files#diff-dbe46dfd0ff7046494da4cb3ccfc6e7bba7c029f7ef9f0588d8926c585fcbd61">+1/-1</a>&nbsp;
    &nbsp; &nbsp; </td>
    </tr>
    
    <tr>
      <td>
        <details>
    <summary><strong>before_install.sh</strong><dd><code>Update Generation
    Timestamp in before_install.sh</code>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
    &nbsp; &nbsp; &nbsp; &nbsp; </dd></summary>
    <hr>
    
    ci/install/before_install.sh
    - Updated generation timestamp.
    
    </details>
    
      </td> <td><a
    
    href="https://github.com/TykTechnologies/tyk/pull/6138/files#diff-bd20b1ec658c22d4ecad9f2f07adf22d0076938f31d6cc09bc35c5ed0dc03807">+1/-1</a>&nbsp;
    &nbsp; &nbsp; </td>
    </tr>
    
    <tr>
      <td>
        <details>
    <summary><strong>post_install.sh</strong><dd><code>Update Generation
    Timestamp in post_install.sh</code>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; </dd></summary> <hr>
    
    ci/install/post_install.sh
    - Updated generation timestamp.
    
    </details>
    
      </td> <td><a
    
    href="https://github.com/TykTechnologies/tyk/pull/6138/files#diff-16f232a53df862d740ca45c0a608e598b38a7211da8325b9f74ceaecc00280c5">+1/-1</a>&nbsp;
    &nbsp; &nbsp; </td>
    </tr>
    
    <tr>
      <td>
        <details>
    <summary><strong>post_remove.sh</strong><dd><code>Update Generation
    Timestamp in post_remove.sh</code>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; </dd></summary> <hr>
    
    ci/install/post_remove.sh
    - Updated generation timestamp.
    
    </details>
    
      </td> <td><a
    
    href="https://github.com/TykTechnologies/tyk/pull/6138/files#diff-416f68b7ae081148bca909eab3eea39f9a41dd1f99271208954805c50de6d522">+1/-1</a>&nbsp;
    &nbsp; &nbsp; </td>
    </tr>
    
    <tr>
      <td>
        <details>
    <summary><strong>post_trans.sh</strong><dd><code>Update Generation
    Timestamp in post_trans.sh</code>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; </dd></summary>
    <hr>
    
    ci/install/post_trans.sh
    - Updated generation timestamp.
    
    </details>
    
      </td> <td><a
    
    href="https://github.com/TykTechnologies/tyk/pull/6138/files#diff-08b47bd93f3e0b3bcc919878bd798d4785a57d386fa05b46ca2a9b586e432c2e">+1/-1</a>&nbsp;
    &nbsp; &nbsp; </td>
    </tr>
    
    <tr>
      <td>
        <details>
    <summary><strong>release.yml</strong><dd><code>Update and Simplify
    Workflow Artifact Naming</code>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; </dd></summary> <hr>
    
    .github/workflows/release.yml
    <li>Updated generation timestamp.<br> <li> Simplified artifact naming
    and removed override option.<br>
    
    </details>
    
      </td>
    <td><a
    
    href="https://github.com/TykTechnologies/tyk/pull/6138/files#diff-87db21a973eed4fef5f32b267aa60fcee5cbdf03c67fafdc2a9b553bb0b15f34">+3/-5</a>&nbsp;
    &nbsp; &nbsp; </td>
    </tr>
    
    <tr>
      <td>
        <details>
    <summary><strong>goreleaser.yml</strong><dd><code>Update Generation
    Timestamp in goreleaser.yml</code>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; </dd></summary> <hr>
    
    ci/goreleaser/goreleaser.yml
    - Updated generation timestamp.
    
    </details>
    
      </td> <td><a
    
    href="https://github.com/TykTechnologies/tyk/pull/6138/files#diff-fb944a05459e4d713bc7541efd6e721cbe992a556353c09c4eb66a8eae9b856e">+1/-1</a>&nbsp;
    &nbsp; &nbsp; </td>
    </tr>
    
    
    </table></details></td></tr><tr><td><strong>Enhancement</strong></td><td><details><summary>1
    files</summary><table>
    <tr>
      <td>
        <details>
    <summary><strong>Dockerfile.std</strong><dd><code>Remove Python
    Installation from Dockerfile</code>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
    </dd></summary>
    <hr>
    
    ci/Dockerfile.std
    <li>Updated generation timestamp.<br> <li> Removed Python installation
    steps.<br> <li> Removed unnecessary file deletions.<br>
    
    </details>
    
      </td>
    <td><a
    
    href="https://github.com/TykTechnologies/tyk/pull/6138/files#diff-a3b3e9cabd877d0bd0fc8f20a9fdca7f44d102547a5fdfcd398ea01637e5dfae">+1/-4</a>&nbsp;
    &nbsp; &nbsp; </td>
    </tr>
    </table></details></td></tr></tr></tbody></table>
    
    ___
    
    > ✨ **PR-Agent usage**:
    >Comment `/help` on the PR to get a list of all available PR-Agent tools
    and their descriptions
    
    <!-- Provide a general summary of your changes in the Title above -->
    
    ## Description
    
    <!-- Describe your changes in detail -->
    
    ## Related Issue
    
    <!-- This project only accepts pull requests related to open issues. -->
    <!-- If suggesting a new feature or change, please discuss it in an
    issue first. -->
    <!-- If fixing a bug, there should be an issue describing it with steps
    to reproduce. -->
    <!-- OSS: Please link to the issue here. Tyk: please create/link the
    JIRA ticket. -->
    
    ## Motivation and Context
    
    <!-- Why is this change required? What problem does it solve? -->
    
    ## How This Has Been Tested
    
    <!-- Please describe in detail how you tested your changes -->
    <!-- Include details of your testing environment, and the tests -->
    <!-- you ran to see how your change affects other areas of the code,
    etc. -->
    <!-- This information is helpful for reviewers and QA. -->
    
    ## Screenshots (if appropriate)
    
    ## Types of changes
    
    <!-- What types of changes does your code introduce? Put an `x` in all
    the boxes that apply: -->
    
    - [ ] Bug fix (non-breaking change which fixes an issue)
    - [ ] New feature (non-breaking change which adds functionality)
    - [ ] Breaking change (fix or feature that would cause existing
    functionality to change)
    - [ ] Refactoring or add test (improvements in base code or adds test
    coverage to functionality)
    
    ## Checklist
    
    <!-- Go over all the following points, and put an `x` in all the boxes
    that apply -->
    <!-- If there are no documentation updates required, mark the item as
    checked. -->
    <!-- Raise up any additional concerns not covered by the checklist. -->
    
    - [ ] I ensured that the documentation is up to date
    - [ ] I explained why this PR updates go.mod in detail with reasoning
    why it's required
    - [ ] I would like a code coverage CI quality gate exception and have
    explained why
    
    Co-authored-by: Gromit <policy@gromit>
    tykbot Bot pushed a commit that referenced this pull request Mar 13, 2024
    <!-- Provide a general summary of your changes in the Title above -->
    
    Remove python from Tyk docker images
    
    <!-- This project only accepts pull requests related to open issues. -->
    <!-- If suggesting a new feature or change, please discuss it in an
    issue first. -->
    <!-- If fixing a bug, there should be an issue describing it with steps
    to reproduce. -->
    <!-- OSS: Please link to the issue here. Tyk: please create/link the
    JIRA ticket. -->
    
    <!-- Why is this change required? What problem does it solve? -->
    
    <!-- Please describe in detail how you tested your changes --> <!--
    Include details of your testing environment, and the tests --> <!-- you
    ran to see how your change affects other areas of the code, etc. -->
    <!-- This information is helpful for reviewers and QA. -->
    
    <!-- What types of changes does your code introduce? Put an `x` in all
    the boxes that apply: -->
    
    - [ ] Bug fix (non-breaking change which fixes an issue)
    - [ ] New feature (non-breaking change which adds functionality)
    - [ ] Breaking change (fix or feature that would cause existing
    functionality to change)
    - [ ] Refactoring or add test (improvements in base code or adds test
    coverage to functionality)
    
    <!-- Go over all the following points, and put an `x` in all the boxes
    that apply -->
    <!-- If there are no documentation updates required, mark the item as
    checked. -->
    <!-- Raise up any additional concerns not covered by the checklist. -->
    
    - [ ] I ensured that the documentation is up to date
    - [ ] I explained why this PR updates go.mod in detail with reasoning
    why it's required
    - [ ] I would like a code coverage CI quality gate exception and have
    explained why
    
    ___
    
    enhancement
    
    ___
    
    - Removed Python installation steps from `ci/Dockerfile.std`, reducing
    CVE surface and aligning with the goal to remove Python from Tyk docker
    images.
    - Updated generation timestamps across multiple scripts and
    configuration files, ensuring they reflect the latest generation date.
    - Simplified artifact naming in `.github/workflows/release.yml` and
    removed the override option for cleaner and more straightforward CI/CD
    pipeline management.
    
    ___
    
    <table><thead><tr><th></th><th align="left">Relevant
    files</th></tr></thead><tbody><tr><td><strong>Configuration
    changes</strong></td><td><details><summary>8 files</summary><table> <tr>
      <td>
        <details>
    <summary><strong>pc.sh</strong><dd><code>Update Generation Timestamp in
    pc.sh</code>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
    &nbsp; &nbsp; &nbsp; </dd></summary>
    <hr>
    
    ci/bin/pc.sh
    - Updated generation timestamp.
    
    </details>
    
      </td> <td><a
    
    href="https://github.com/TykTechnologies/tyk/pull/6138/files#diff-1ab5821f23841af3afa7d4b35ebe5bbf5f16f73d24efc0bc7ee1c9f7d139c343">+1/-1</a>&nbsp;
    &nbsp; &nbsp; </td>
    </tr>
    
    <tr>
      <td>
        <details>
    <summary><strong>unlock-agent.sh</strong><dd><code>Update Generation
    Timestamp in unlock-agent.sh</code>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; </dd></summary> <hr>
    
    ci/bin/unlock-agent.sh
    - Updated generation timestamp.
    
    </details>
    
      </td> <td><a
    
    href="https://github.com/TykTechnologies/tyk/pull/6138/files#diff-dbe46dfd0ff7046494da4cb3ccfc6e7bba7c029f7ef9f0588d8926c585fcbd61">+1/-1</a>&nbsp;
    &nbsp; &nbsp; </td>
    </tr>
    
    <tr>
      <td>
        <details>
    <summary><strong>before_install.sh</strong><dd><code>Update Generation
    Timestamp in before_install.sh</code>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
    &nbsp; &nbsp; &nbsp; &nbsp; </dd></summary>
    <hr>
    
    ci/install/before_install.sh
    - Updated generation timestamp.
    
    </details>
    
      </td> <td><a
    
    href="https://github.com/TykTechnologies/tyk/pull/6138/files#diff-bd20b1ec658c22d4ecad9f2f07adf22d0076938f31d6cc09bc35c5ed0dc03807">+1/-1</a>&nbsp;
    &nbsp; &nbsp; </td>
    </tr>
    
    <tr>
      <td>
        <details>
    <summary><strong>post_install.sh</strong><dd><code>Update Generation
    Timestamp in post_install.sh</code>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; </dd></summary> <hr>
    
    ci/install/post_install.sh
    - Updated generation timestamp.
    
    </details>
    
      </td> <td><a
    
    href="https://github.com/TykTechnologies/tyk/pull/6138/files#diff-16f232a53df862d740ca45c0a608e598b38a7211da8325b9f74ceaecc00280c5">+1/-1</a>&nbsp;
    &nbsp; &nbsp; </td>
    </tr>
    
    <tr>
      <td>
        <details>
    <summary><strong>post_remove.sh</strong><dd><code>Update Generation
    Timestamp in post_remove.sh</code>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; </dd></summary> <hr>
    
    ci/install/post_remove.sh
    - Updated generation timestamp.
    
    </details>
    
      </td> <td><a
    
    href="https://github.com/TykTechnologies/tyk/pull/6138/files#diff-416f68b7ae081148bca909eab3eea39f9a41dd1f99271208954805c50de6d522">+1/-1</a>&nbsp;
    &nbsp; &nbsp; </td>
    </tr>
    
    <tr>
      <td>
        <details>
    <summary><strong>post_trans.sh</strong><dd><code>Update Generation
    Timestamp in post_trans.sh</code>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; </dd></summary>
    <hr>
    
    ci/install/post_trans.sh
    - Updated generation timestamp.
    
    </details>
    
      </td> <td><a
    
    href="https://github.com/TykTechnologies/tyk/pull/6138/files#diff-08b47bd93f3e0b3bcc919878bd798d4785a57d386fa05b46ca2a9b586e432c2e">+1/-1</a>&nbsp;
    &nbsp; &nbsp; </td>
    </tr>
    
    <tr>
      <td>
        <details>
    <summary><strong>release.yml</strong><dd><code>Update and Simplify
    Workflow Artifact Naming</code>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; </dd></summary> <hr>
    
    .github/workflows/release.yml
    <li>Updated generation timestamp.<br> <li> Simplified artifact naming
    and removed override option.<br>
    
    </details>
    
      </td>
    <td><a
    
    href="https://github.com/TykTechnologies/tyk/pull/6138/files#diff-87db21a973eed4fef5f32b267aa60fcee5cbdf03c67fafdc2a9b553bb0b15f34">+3/-5</a>&nbsp;
    &nbsp; &nbsp; </td>
    </tr>
    
    <tr>
      <td>
        <details>
    <summary><strong>goreleaser.yml</strong><dd><code>Update Generation
    Timestamp in goreleaser.yml</code>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; </dd></summary> <hr>
    
    ci/goreleaser/goreleaser.yml
    - Updated generation timestamp.
    
    </details>
    
      </td> <td><a
    
    href="https://github.com/TykTechnologies/tyk/pull/6138/files#diff-fb944a05459e4d713bc7541efd6e721cbe992a556353c09c4eb66a8eae9b856e">+1/-1</a>&nbsp;
    &nbsp; &nbsp; </td>
    </tr>
    
    
    </table></details></td></tr><tr><td><strong>Enhancement</strong></td><td><details><summary>1
    files</summary><table>
    <tr>
      <td>
        <details>
    <summary><strong>Dockerfile.std</strong><dd><code>Remove Python
    Installation from Dockerfile</code>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
    </dd></summary>
    <hr>
    
    ci/Dockerfile.std
    <li>Updated generation timestamp.<br> <li> Removed Python installation
    steps.<br> <li> Removed unnecessary file deletions.<br>
    
    </details>
    
      </td>
    <td><a
    
    href="https://github.com/TykTechnologies/tyk/pull/6138/files#diff-a3b3e9cabd877d0bd0fc8f20a9fdca7f44d102547a5fdfcd398ea01637e5dfae">+1/-4</a>&nbsp;
    &nbsp; &nbsp; </td>
    </tr>
    </table></details></td></tr></tr></tbody></table>
    
    ___
    
    > ✨ **PR-Agent usage**:
    >Comment `/help` on the PR to get a list of all available PR-Agent tools
    and their descriptions
    
    <!-- Provide a general summary of your changes in the Title above -->
    
    ## Description
    
    <!-- Describe your changes in detail -->
    
    ## Related Issue
    
    <!-- This project only accepts pull requests related to open issues. -->
    <!-- If suggesting a new feature or change, please discuss it in an
    issue first. -->
    <!-- If fixing a bug, there should be an issue describing it with steps
    to reproduce. -->
    <!-- OSS: Please link to the issue here. Tyk: please create/link the
    JIRA ticket. -->
    
    ## Motivation and Context
    
    <!-- Why is this change required? What problem does it solve? -->
    
    ## How This Has Been Tested
    
    <!-- Please describe in detail how you tested your changes -->
    <!-- Include details of your testing environment, and the tests -->
    <!-- you ran to see how your change affects other areas of the code,
    etc. -->
    <!-- This information is helpful for reviewers and QA. -->
    
    ## Screenshots (if appropriate)
    
    ## Types of changes
    
    <!-- What types of changes does your code introduce? Put an `x` in all
    the boxes that apply: -->
    
    - [ ] Bug fix (non-breaking change which fixes an issue)
    - [ ] New feature (non-breaking change which adds functionality)
    - [ ] Breaking change (fix or feature that would cause existing
    functionality to change)
    - [ ] Refactoring or add test (improvements in base code or adds test
    coverage to functionality)
    
    ## Checklist
    
    <!-- Go over all the following points, and put an `x` in all the boxes
    that apply -->
    <!-- If there are no documentation updates required, mark the item as
    checked. -->
    <!-- Raise up any additional concerns not covered by the checklist. -->
    
    - [ ] I ensured that the documentation is up to date
    - [ ] I explained why this PR updates go.mod in detail with reasoning
    why it's required
    - [ ] I would like a code coverage CI quality gate exception and have
    explained why
    
    Co-authored-by: Gromit <policy@gromit>
    (cherry picked from commit 9e2f115)
    buger added a commit that referenced this pull request Mar 13, 2024
    … gromit (#6138) (#6141)
    
    [TT-11549] Auto generated from templates by gromit (#6138) (#6141)
    
    <!-- Provide a general summary of your changes in the Title above -->
    
    Remove python from Tyk docker images
    
    <!-- This project only accepts pull requests related to open issues. -->
    <!-- If suggesting a new feature or change, please discuss it in an
    issue first. -->
    <!-- If fixing a bug, there should be an issue describing it with steps
    to reproduce. -->
    <!-- OSS: Please link to the issue here. Tyk: please create/link the
    JIRA ticket. -->
    
    <!-- Why is this change required? What problem does it solve? -->
    
    <!-- Please describe in detail how you tested your changes --> <!--
    Include details of your testing environment, and the tests --> <!-- you
    ran to see how your change affects other areas of the code, etc. -->
    <!-- This information is helpful for reviewers and QA. -->
    
    <!-- What types of changes does your code introduce? Put an `x` in all
    the boxes that apply: -->
    
    - [ ] Bug fix (non-breaking change which fixes an issue)
    - [ ] New feature (non-breaking change which adds functionality)
    - [ ] Breaking change (fix or feature that would cause existing
    functionality to change)
    - [ ] Refactoring or add test (improvements in base code or adds test
    coverage to functionality)
    
    <!-- Go over all the following points, and put an `x` in all the boxes
    that apply -->
    <!-- If there are no documentation updates required, mark the item as
    checked. -->
    <!-- Raise up any additional concerns not covered by the checklist. -->
    
    - [ ] I ensured that the documentation is up to date
    - [ ] I explained why this PR updates go.mod in detail with reasoning
    why it's required
    - [ ] I would like a code coverage CI quality gate exception and have
    explained why
    
    ___
    
    enhancement
    
    ___
    
    - Removed Python installation steps from `ci/Dockerfile.std`, reducing
    CVE surface and aligning with the goal to remove Python from Tyk docker
    images.
    - Updated generation timestamps across multiple scripts and
    configuration files, ensuring they reflect the latest generation date.
    - Simplified artifact naming in `.github/workflows/release.yml` and
    removed the override option for cleaner and more straightforward CI/CD
    pipeline management.
    
    ___
    
    <table><thead><tr><th></th><th align="left">Relevant
    files</th></tr></thead><tbody><tr><td><strong>Configuration
    changes</strong></td><td><details><summary>8 files</summary><table> <tr>
      <td>
        <details>
    <summary><strong>pc.sh</strong><dd><code>Update Generation Timestamp in
    pc.sh</code>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
    &nbsp; &nbsp; &nbsp; </dd></summary>
    <hr>
    
    ci/bin/pc.sh
    - Updated generation timestamp.
    
    </details>
    
      </td> <td><a
    
    href="https://github.com/TykTechnologies/tyk/pull/6138/files#diff-1ab5821f23841af3afa7d4b35ebe5bbf5f16f73d24efc0bc7ee1c9f7d139c343">+1/-1</a>&nbsp;
    &nbsp; &nbsp; </td>
    </tr>
    
    <tr>
      <td>
        <details>
    <summary><strong>unlock-agent.sh</strong><dd><code>Update Generation
    Timestamp in unlock-agent.sh</code>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; </dd></summary> <hr>
    
    ci/bin/unlock-agent.sh
    - Updated generation timestamp.
    
    </details>
    
      </td> <td><a
    
    href="https://github.com/TykTechnologies/tyk/pull/6138/files#diff-dbe46dfd0ff7046494da4cb3ccfc6e7bba7c029f7ef9f0588d8926c585fcbd61">+1/-1</a>&nbsp;
    &nbsp; &nbsp; </td>
    </tr>
    
    <tr>
      <td>
        <details>
    <summary><strong>before_install.sh</strong><dd><code>Update Generation
    Timestamp in before_install.sh</code>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
    &nbsp; &nbsp; &nbsp; &nbsp; </dd></summary>
    <hr>
    
    ci/install/before_install.sh
    - Updated generation timestamp.
    
    </details>
    
      </td> <td><a
    
    href="https://github.com/TykTechnologies/tyk/pull/6138/files#diff-bd20b1ec658c22d4ecad9f2f07adf22d0076938f31d6cc09bc35c5ed0dc03807">+1/-1</a>&nbsp;
    &nbsp; &nbsp; </td>
    </tr>
    
    <tr>
      <td>
        <details>
    <summary><strong>post_install.sh</strong><dd><code>Update Generation
    Timestamp in post_install.sh</code>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; </dd></summary> <hr>
    
    ci/install/post_install.sh
    - Updated generation timestamp.
    
    </details>
    
      </td> <td><a
    
    href="https://github.com/TykTechnologies/tyk/pull/6138/files#diff-16f232a53df862d740ca45c0a608e598b38a7211da8325b9f74ceaecc00280c5">+1/-1</a>&nbsp;
    &nbsp; &nbsp; </td>
    </tr>
    
    <tr>
      <td>
        <details>
    <summary><strong>post_remove.sh</strong><dd><code>Update Generation
    Timestamp in post_remove.sh</code>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; </dd></summary> <hr>
    
    ci/install/post_remove.sh
    - Updated generation timestamp.
    
    </details>
    
      </td> <td><a
    
    href="https://github.com/TykTechnologies/tyk/pull/6138/files#diff-416f68b7ae081148bca909eab3eea39f9a41dd1f99271208954805c50de6d522">+1/-1</a>&nbsp;
    &nbsp; &nbsp; </td>
    </tr>
    
    <tr>
      <td>
        <details>
    <summary><strong>post_trans.sh</strong><dd><code>Update Generation
    Timestamp in post_trans.sh</code>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; </dd></summary>
    <hr>
    
    ci/install/post_trans.sh
    - Updated generation timestamp.
    
    </details>
    
      </td> <td><a
    
    href="https://github.com/TykTechnologies/tyk/pull/6138/files#diff-08b47bd93f3e0b3bcc919878bd798d4785a57d386fa05b46ca2a9b586e432c2e">+1/-1</a>&nbsp;
    &nbsp; &nbsp; </td>
    </tr>
    
    <tr>
      <td>
        <details>
    <summary><strong>release.yml</strong><dd><code>Update and Simplify
    Workflow Artifact Naming</code>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; </dd></summary> <hr>
    
    .github/workflows/release.yml
    <li>Updated generation timestamp.<br> <li> Simplified artifact naming
    and removed override option.<br>
    
    </details>
    
      </td>
    <td><a
    
    href="https://github.com/TykTechnologies/tyk/pull/6138/files#diff-87db21a973eed4fef5f32b267aa60fcee5cbdf03c67fafdc2a9b553bb0b15f34">+3/-5</a>&nbsp;
    &nbsp; &nbsp; </td>
    </tr>
    
    <tr>
      <td>
        <details>
    <summary><strong>goreleaser.yml</strong><dd><code>Update Generation
    Timestamp in goreleaser.yml</code>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; </dd></summary> <hr>
    
    ci/goreleaser/goreleaser.yml
    - Updated generation timestamp.
    
    </details>
    
      </td> <td><a
    
    href="https://github.com/TykTechnologies/tyk/pull/6138/files#diff-fb944a05459e4d713bc7541efd6e721cbe992a556353c09c4eb66a8eae9b856e">+1/-1</a>&nbsp;
    &nbsp; &nbsp; </td>
    </tr>
    
    
    </table></details></td></tr><tr><td><strong>Enhancement</strong></td><td><details><summary>1
    files</summary><table>
    <tr>
      <td>
        <details>
    <summary><strong>Dockerfile.std</strong><dd><code>Remove Python
    Installation from Dockerfile</code>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
    </dd></summary>
    <hr>
    
    ci/Dockerfile.std
    <li>Updated generation timestamp.<br> <li> Removed Python installation
    steps.<br> <li> Removed unnecessary file deletions.<br>
    
    </details>
    
      </td>
    <td><a
    
    href="https://github.com/TykTechnologies/tyk/pull/6138/files#diff-a3b3e9cabd877d0bd0fc8f20a9fdca7f44d102547a5fdfcd398ea01637e5dfae">+1/-4</a>&nbsp;
    &nbsp; &nbsp; </td>
    </tr>
    </table></details></td></tr></tr></tbody></table>
    
    ___
    
    > ✨ **PR-Agent usage**:
    >Comment `/help` on the PR to get a list of all available PR-Agent tools
    and their descriptions
    
    <!-- Provide a general summary of your changes in the Title above -->
    
    ## Description
    
    <!-- Describe your changes in detail -->
    
    ## Related Issue
    
    <!-- This project only accepts pull requests related to open issues. -->
    <!-- If suggesting a new feature or change, please discuss it in an
    issue first. -->
    <!-- If fixing a bug, there should be an issue describing it with steps
    to reproduce. -->
    <!-- OSS: Please link to the issue here. Tyk: please create/link the
    JIRA ticket. -->
    
    ## Motivation and Context
    
    <!-- Why is this change required? What problem does it solve? -->
    
    ## How This Has Been Tested
    
    <!-- Please describe in detail how you tested your changes -->
    <!-- Include details of your testing environment, and the tests -->
    <!-- you ran to see how your change affects other areas of the code,
    etc. -->
    <!-- This information is helpful for reviewers and QA. -->
    
    ## Screenshots (if appropriate)
    
    ## Types of changes
    
    <!-- What types of changes does your code introduce? Put an `x` in all
    the boxes that apply: -->
    
    - [ ] Bug fix (non-breaking change which fixes an issue)
    - [ ] New feature (non-breaking change which adds functionality)
    - [ ] Breaking change (fix or feature that would cause existing
    functionality to change)
    - [ ] Refactoring or add test (improvements in base code or adds test
    coverage to functionality)
    
    ## Checklist
    
    <!-- Go over all the following points, and put an `x` in all the boxes
    that apply -->
    <!-- If there are no documentation updates required, mark the item as
    checked. -->
    <!-- Raise up any additional concerns not covered by the checklist. -->
    
    - [ ] I ensured that the documentation is up to date
    - [ ] I explained why this PR updates go.mod in detail with reasoning
    why it's required
    - [ ] I would like a code coverage CI quality gate exception and have
    explained why
    
    Co-authored-by: Gromit <policy@gromit>
    @jeffy-mathew jeffy-mathew changed the title [TT-11549] Auto generated from templates by gromit [TT-11549/TT-11597] Auto generated from templates by gromit Mar 13, 2024
    edsonmichaque pushed a commit that referenced this pull request Feb 18, 2025
    <!-- Provide a general summary of your changes in the Title above -->
    
    Remove python from Tyk docker images
    
    <!-- This project only accepts pull requests related to open issues. -->
    <!-- If suggesting a new feature or change, please discuss it in an
    issue first. -->
    <!-- If fixing a bug, there should be an issue describing it with steps
    to reproduce. -->
    <!-- OSS: Please link to the issue here. Tyk: please create/link the
    JIRA ticket. -->
    
    <!-- Why is this change required? What problem does it solve? -->
    
    <!-- Please describe in detail how you tested your changes --> <!--
    Include details of your testing environment, and the tests --> <!-- you
    ran to see how your change affects other areas of the code, etc. -->
    <!-- This information is helpful for reviewers and QA. -->
    
    <!-- What types of changes does your code introduce? Put an `x` in all
    the boxes that apply: -->
    
    - [ ] Bug fix (non-breaking change which fixes an issue)
    - [ ] New feature (non-breaking change which adds functionality)
    - [ ] Breaking change (fix or feature that would cause existing
    functionality to change)
    - [ ] Refactoring or add test (improvements in base code or adds test
    coverage to functionality)
    
    <!-- Go over all the following points, and put an `x` in all the boxes
    that apply -->
    <!-- If there are no documentation updates required, mark the item as
    checked. -->
    <!-- Raise up any additional concerns not covered by the checklist. -->
    
    - [ ] I ensured that the documentation is up to date
    - [ ] I explained why this PR updates go.mod in detail with reasoning
    why it's required
    - [ ] I would like a code coverage CI quality gate exception and have
    explained why
    
    ___
    
    enhancement
    
    ___
    
    - Removed Python installation steps from `ci/Dockerfile.std`, reducing
    CVE surface and aligning with the goal to remove Python from Tyk docker
    images.
    - Updated generation timestamps across multiple scripts and
    configuration files, ensuring they reflect the latest generation date.
    - Simplified artifact naming in `.github/workflows/release.yml` and
    removed the override option for cleaner and more straightforward CI/CD
    pipeline management.
    
    ___
    
    <table><thead><tr><th></th><th align="left">Relevant
    files</th></tr></thead><tbody><tr><td><strong>Configuration
    changes</strong></td><td><details><summary>8 files</summary><table> <tr>
      <td>
        <details>
    <summary><strong>pc.sh</strong><dd><code>Update Generation Timestamp in
    pc.sh</code>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
    &nbsp; &nbsp; &nbsp; </dd></summary>
    <hr>
    
    ci/bin/pc.sh
    - Updated generation timestamp.
    
    </details>
    
      </td> <td><a
    
    href="https://github.com/TykTechnologies/tyk/pull/6138/files#diff-1ab5821f23841af3afa7d4b35ebe5bbf5f16f73d24efc0bc7ee1c9f7d139c343">+1/-1</a>&nbsp;
    &nbsp; &nbsp; </td>
    </tr>
    
    <tr>
      <td>
        <details>
    <summary><strong>unlock-agent.sh</strong><dd><code>Update Generation
    Timestamp in unlock-agent.sh</code>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; </dd></summary> <hr>
    
    ci/bin/unlock-agent.sh
    - Updated generation timestamp.
    
    </details>
    
      </td> <td><a
    
    href="https://github.com/TykTechnologies/tyk/pull/6138/files#diff-dbe46dfd0ff7046494da4cb3ccfc6e7bba7c029f7ef9f0588d8926c585fcbd61">+1/-1</a>&nbsp;
    &nbsp; &nbsp; </td>
    </tr>
    
    <tr>
      <td>
        <details>
    <summary><strong>before_install.sh</strong><dd><code>Update Generation
    Timestamp in before_install.sh</code>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
    &nbsp; &nbsp; &nbsp; &nbsp; </dd></summary>
    <hr>
    
    ci/install/before_install.sh
    - Updated generation timestamp.
    
    </details>
    
      </td> <td><a
    
    href="https://github.com/TykTechnologies/tyk/pull/6138/files#diff-bd20b1ec658c22d4ecad9f2f07adf22d0076938f31d6cc09bc35c5ed0dc03807">+1/-1</a>&nbsp;
    &nbsp; &nbsp; </td>
    </tr>
    
    <tr>
      <td>
        <details>
    <summary><strong>post_install.sh</strong><dd><code>Update Generation
    Timestamp in post_install.sh</code>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; </dd></summary> <hr>
    
    ci/install/post_install.sh
    - Updated generation timestamp.
    
    </details>
    
      </td> <td><a
    
    href="https://github.com/TykTechnologies/tyk/pull/6138/files#diff-16f232a53df862d740ca45c0a608e598b38a7211da8325b9f74ceaecc00280c5">+1/-1</a>&nbsp;
    &nbsp; &nbsp; </td>
    </tr>
    
    <tr>
      <td>
        <details>
    <summary><strong>post_remove.sh</strong><dd><code>Update Generation
    Timestamp in post_remove.sh</code>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; </dd></summary> <hr>
    
    ci/install/post_remove.sh
    - Updated generation timestamp.
    
    </details>
    
      </td> <td><a
    
    href="https://github.com/TykTechnologies/tyk/pull/6138/files#diff-416f68b7ae081148bca909eab3eea39f9a41dd1f99271208954805c50de6d522">+1/-1</a>&nbsp;
    &nbsp; &nbsp; </td>
    </tr>
    
    <tr>
      <td>
        <details>
    <summary><strong>post_trans.sh</strong><dd><code>Update Generation
    Timestamp in post_trans.sh</code>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; </dd></summary>
    <hr>
    
    ci/install/post_trans.sh
    - Updated generation timestamp.
    
    </details>
    
      </td> <td><a
    
    href="https://github.com/TykTechnologies/tyk/pull/6138/files#diff-08b47bd93f3e0b3bcc919878bd798d4785a57d386fa05b46ca2a9b586e432c2e">+1/-1</a>&nbsp;
    &nbsp; &nbsp; </td>
    </tr>
    
    <tr>
      <td>
        <details>
    <summary><strong>release.yml</strong><dd><code>Update and Simplify
    Workflow Artifact Naming</code>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; </dd></summary> <hr>
    
    .github/workflows/release.yml
    <li>Updated generation timestamp.<br> <li> Simplified artifact naming
    and removed override option.<br>
    
    </details>
    
      </td>
    <td><a
    
    href="https://github.com/TykTechnologies/tyk/pull/6138/files#diff-87db21a973eed4fef5f32b267aa60fcee5cbdf03c67fafdc2a9b553bb0b15f34">+3/-5</a>&nbsp;
    &nbsp; &nbsp; </td>
    </tr>
    
    <tr>
      <td>
        <details>
    <summary><strong>goreleaser.yml</strong><dd><code>Update Generation
    Timestamp in goreleaser.yml</code>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; </dd></summary> <hr>
    
    ci/goreleaser/goreleaser.yml
    - Updated generation timestamp.
    
    </details>
    
      </td> <td><a
    
    href="https://github.com/TykTechnologies/tyk/pull/6138/files#diff-fb944a05459e4d713bc7541efd6e721cbe992a556353c09c4eb66a8eae9b856e">+1/-1</a>&nbsp;
    &nbsp; &nbsp; </td>
    </tr>
    
    
    </table></details></td></tr><tr><td><strong>Enhancement</strong></td><td><details><summary>1
    files</summary><table>
    <tr>
      <td>
        <details>
    <summary><strong>Dockerfile.std</strong><dd><code>Remove Python
    Installation from Dockerfile</code>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
    </dd></summary>
    <hr>
    
    ci/Dockerfile.std
    <li>Updated generation timestamp.<br> <li> Removed Python installation
    steps.<br> <li> Removed unnecessary file deletions.<br>
    
    </details>
    
      </td>
    <td><a
    
    href="https://github.com/TykTechnologies/tyk/pull/6138/files#diff-a3b3e9cabd877d0bd0fc8f20a9fdca7f44d102547a5fdfcd398ea01637e5dfae">+1/-4</a>&nbsp;
    &nbsp; &nbsp; </td>
    </tr>
    </table></details></td></tr></tr></tbody></table>
    
    ___
    
    > ✨ **PR-Agent usage**:
    >Comment `/help` on the PR to get a list of all available PR-Agent tools
    and their descriptions
    
    <!-- Provide a general summary of your changes in the Title above -->
    
    ## Description
    
    <!-- Describe your changes in detail -->
    
    ## Related Issue
    
    <!-- This project only accepts pull requests related to open issues. -->
    <!-- If suggesting a new feature or change, please discuss it in an
    issue first. -->
    <!-- If fixing a bug, there should be an issue describing it with steps
    to reproduce. -->
    <!-- OSS: Please link to the issue here. Tyk: please create/link the
    JIRA ticket. -->
    
    ## Motivation and Context
    
    <!-- Why is this change required? What problem does it solve? -->
    
    ## How This Has Been Tested
    
    <!-- Please describe in detail how you tested your changes -->
    <!-- Include details of your testing environment, and the tests -->
    <!-- you ran to see how your change affects other areas of the code,
    etc. -->
    <!-- This information is helpful for reviewers and QA. -->
    
    ## Screenshots (if appropriate)
    
    ## Types of changes
    
    <!-- What types of changes does your code introduce? Put an `x` in all
    the boxes that apply: -->
    
    - [ ] Bug fix (non-breaking change which fixes an issue)
    - [ ] New feature (non-breaking change which adds functionality)
    - [ ] Breaking change (fix or feature that would cause existing
    functionality to change)
    - [ ] Refactoring or add test (improvements in base code or adds test
    coverage to functionality)
    
    ## Checklist
    
    <!-- Go over all the following points, and put an `x` in all the boxes
    that apply -->
    <!-- If there are no documentation updates required, mark the item as
    checked. -->
    <!-- Raise up any additional concerns not covered by the checklist. -->
    
    - [ ] I ensured that the documentation is up to date
    - [ ] I explained why this PR updates go.mod in detail with reasoning
    why it's required
    - [ ] I would like a code coverage CI quality gate exception and have
    explained why
    
    Co-authored-by: Gromit <policy@gromit>
    edsonmichaque pushed a commit that referenced this pull request Feb 18, 2025
    <!-- Provide a general summary of your changes in the Title above -->
    
    Remove python from Tyk docker images
    
    <!-- This project only accepts pull requests related to open issues. -->
    <!-- If suggesting a new feature or change, please discuss it in an
    issue first. -->
    <!-- If fixing a bug, there should be an issue describing it with steps
    to reproduce. -->
    <!-- OSS: Please link to the issue here. Tyk: please create/link the
    JIRA ticket. -->
    
    <!-- Why is this change required? What problem does it solve? -->
    
    <!-- Please describe in detail how you tested your changes --> <!--
    Include details of your testing environment, and the tests --> <!-- you
    ran to see how your change affects other areas of the code, etc. -->
    <!-- This information is helpful for reviewers and QA. -->
    
    <!-- What types of changes does your code introduce? Put an `x` in all
    the boxes that apply: -->
    
    - [ ] Bug fix (non-breaking change which fixes an issue)
    - [ ] New feature (non-breaking change which adds functionality)
    - [ ] Breaking change (fix or feature that would cause existing
    functionality to change)
    - [ ] Refactoring or add test (improvements in base code or adds test
    coverage to functionality)
    
    <!-- Go over all the following points, and put an `x` in all the boxes
    that apply -->
    <!-- If there are no documentation updates required, mark the item as
    checked. -->
    <!-- Raise up any additional concerns not covered by the checklist. -->
    
    - [ ] I ensured that the documentation is up to date
    - [ ] I explained why this PR updates go.mod in detail with reasoning
    why it's required
    - [ ] I would like a code coverage CI quality gate exception and have
    explained why
    
    ___
    
    enhancement
    
    ___
    
    - Removed Python installation steps from `ci/Dockerfile.std`, reducing
    CVE surface and aligning with the goal to remove Python from Tyk docker
    images.
    - Updated generation timestamps across multiple scripts and
    configuration files, ensuring they reflect the latest generation date.
    - Simplified artifact naming in `.github/workflows/release.yml` and
    removed the override option for cleaner and more straightforward CI/CD
    pipeline management.
    
    ___
    
    <table><thead><tr><th></th><th align="left">Relevant
    files</th></tr></thead><tbody><tr><td><strong>Configuration
    changes</strong></td><td><details><summary>8 files</summary><table> <tr>
      <td>
        <details>
    <summary><strong>pc.sh</strong><dd><code>Update Generation Timestamp in
    pc.sh</code>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
    &nbsp; &nbsp; &nbsp; </dd></summary>
    <hr>
    
    ci/bin/pc.sh
    - Updated generation timestamp.
    
    </details>
    
      </td> <td><a
    
    href="https://github.com/TykTechnologies/tyk/pull/6138/files#diff-1ab5821f23841af3afa7d4b35ebe5bbf5f16f73d24efc0bc7ee1c9f7d139c343">+1/-1</a>&nbsp;
    &nbsp; &nbsp; </td>
    </tr>
    
    <tr>
      <td>
        <details>
    <summary><strong>unlock-agent.sh</strong><dd><code>Update Generation
    Timestamp in unlock-agent.sh</code>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; </dd></summary> <hr>
    
    ci/bin/unlock-agent.sh
    - Updated generation timestamp.
    
    </details>
    
      </td> <td><a
    
    href="https://github.com/TykTechnologies/tyk/pull/6138/files#diff-dbe46dfd0ff7046494da4cb3ccfc6e7bba7c029f7ef9f0588d8926c585fcbd61">+1/-1</a>&nbsp;
    &nbsp; &nbsp; </td>
    </tr>
    
    <tr>
      <td>
        <details>
    <summary><strong>before_install.sh</strong><dd><code>Update Generation
    Timestamp in before_install.sh</code>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
    &nbsp; &nbsp; &nbsp; &nbsp; </dd></summary>
    <hr>
    
    ci/install/before_install.sh
    - Updated generation timestamp.
    
    </details>
    
      </td> <td><a
    
    href="https://github.com/TykTechnologies/tyk/pull/6138/files#diff-bd20b1ec658c22d4ecad9f2f07adf22d0076938f31d6cc09bc35c5ed0dc03807">+1/-1</a>&nbsp;
    &nbsp; &nbsp; </td>
    </tr>
    
    <tr>
      <td>
        <details>
    <summary><strong>post_install.sh</strong><dd><code>Update Generation
    Timestamp in post_install.sh</code>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; </dd></summary> <hr>
    
    ci/install/post_install.sh
    - Updated generation timestamp.
    
    </details>
    
      </td> <td><a
    
    href="https://github.com/TykTechnologies/tyk/pull/6138/files#diff-16f232a53df862d740ca45c0a608e598b38a7211da8325b9f74ceaecc00280c5">+1/-1</a>&nbsp;
    &nbsp; &nbsp; </td>
    </tr>
    
    <tr>
      <td>
        <details>
    <summary><strong>post_remove.sh</strong><dd><code>Update Generation
    Timestamp in post_remove.sh</code>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; </dd></summary> <hr>
    
    ci/install/post_remove.sh
    - Updated generation timestamp.
    
    </details>
    
      </td> <td><a
    
    href="https://github.com/TykTechnologies/tyk/pull/6138/files#diff-416f68b7ae081148bca909eab3eea39f9a41dd1f99271208954805c50de6d522">+1/-1</a>&nbsp;
    &nbsp; &nbsp; </td>
    </tr>
    
    <tr>
      <td>
        <details>
    <summary><strong>post_trans.sh</strong><dd><code>Update Generation
    Timestamp in post_trans.sh</code>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; </dd></summary>
    <hr>
    
    ci/install/post_trans.sh
    - Updated generation timestamp.
    
    </details>
    
      </td> <td><a
    
    href="https://github.com/TykTechnologies/tyk/pull/6138/files#diff-08b47bd93f3e0b3bcc919878bd798d4785a57d386fa05b46ca2a9b586e432c2e">+1/-1</a>&nbsp;
    &nbsp; &nbsp; </td>
    </tr>
    
    <tr>
      <td>
        <details>
    <summary><strong>release.yml</strong><dd><code>Update and Simplify
    Workflow Artifact Naming</code>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; </dd></summary> <hr>
    
    .github/workflows/release.yml
    <li>Updated generation timestamp.<br> <li> Simplified artifact naming
    and removed override option.<br>
    
    </details>
    
      </td>
    <td><a
    
    href="https://github.com/TykTechnologies/tyk/pull/6138/files#diff-87db21a973eed4fef5f32b267aa60fcee5cbdf03c67fafdc2a9b553bb0b15f34">+3/-5</a>&nbsp;
    &nbsp; &nbsp; </td>
    </tr>
    
    <tr>
      <td>
        <details>
    <summary><strong>goreleaser.yml</strong><dd><code>Update Generation
    Timestamp in goreleaser.yml</code>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; </dd></summary> <hr>
    
    ci/goreleaser/goreleaser.yml
    - Updated generation timestamp.
    
    </details>
    
      </td> <td><a
    
    href="https://github.com/TykTechnologies/tyk/pull/6138/files#diff-fb944a05459e4d713bc7541efd6e721cbe992a556353c09c4eb66a8eae9b856e">+1/-1</a>&nbsp;
    &nbsp; &nbsp; </td>
    </tr>
    
    
    </table></details></td></tr><tr><td><strong>Enhancement</strong></td><td><details><summary>1
    files</summary><table>
    <tr>
      <td>
        <details>
    <summary><strong>Dockerfile.std</strong><dd><code>Remove Python
    Installation from Dockerfile</code>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
    </dd></summary>
    <hr>
    
    ci/Dockerfile.std
    <li>Updated generation timestamp.<br> <li> Removed Python installation
    steps.<br> <li> Removed unnecessary file deletions.<br>
    
    </details>
    
      </td>
    <td><a
    
    href="https://github.com/TykTechnologies/tyk/pull/6138/files#diff-a3b3e9cabd877d0bd0fc8f20a9fdca7f44d102547a5fdfcd398ea01637e5dfae">+1/-4</a>&nbsp;
    &nbsp; &nbsp; </td>
    </tr>
    </table></details></td></tr></tr></tbody></table>
    
    ___
    
    > ✨ **PR-Agent usage**:
    >Comment `/help` on the PR to get a list of all available PR-Agent tools
    and their descriptions
    
    <!-- Provide a general summary of your changes in the Title above -->
    
    ## Description
    
    <!-- Describe your changes in detail -->
    
    ## Related Issue
    
    <!-- This project only accepts pull requests related to open issues. -->
    <!-- If suggesting a new feature or change, please discuss it in an
    issue first. -->
    <!-- If fixing a bug, there should be an issue describing it with steps
    to reproduce. -->
    <!-- OSS: Please link to the issue here. Tyk: please create/link the
    JIRA ticket. -->
    
    ## Motivation and Context
    
    <!-- Why is this change required? What problem does it solve? -->
    
    ## How This Has Been Tested
    
    <!-- Please describe in detail how you tested your changes -->
    <!-- Include details of your testing environment, and the tests -->
    <!-- you ran to see how your change affects other areas of the code,
    etc. -->
    <!-- This information is helpful for reviewers and QA. -->
    
    ## Screenshots (if appropriate)
    
    ## Types of changes
    
    <!-- What types of changes does your code introduce? Put an `x` in all
    the boxes that apply: -->
    
    - [ ] Bug fix (non-breaking change which fixes an issue)
    - [ ] New feature (non-breaking change which adds functionality)
    - [ ] Breaking change (fix or feature that would cause existing
    functionality to change)
    - [ ] Refactoring or add test (improvements in base code or adds test
    coverage to functionality)
    
    ## Checklist
    
    <!-- Go over all the following points, and put an `x` in all the boxes
    that apply -->
    <!-- If there are no documentation updates required, mark the item as
    checked. -->
    <!-- Raise up any additional concerns not covered by the checklist. -->
    
    - [ ] I ensured that the documentation is up to date
    - [ ] I explained why this PR updates go.mod in detail with reasoning
    why it's required
    - [ ] I would like a code coverage CI quality gate exception and have
    explained why
    
    Co-authored-by: Gromit <policy@gromit>
    edsonmichaque pushed a commit to edsonmichaque/tyk-1 that referenced this pull request Feb 18, 2025
    ) (TykTechnologies#6141)
    
    <!-- Provide a general summary of your changes in the Title above -->
    
    Remove python from Tyk docker images
    
    <!-- This project only accepts pull requests related to open issues. -->
    <!-- If suggesting a new feature or change, please discuss it in an
    issue first. -->
    <!-- If fixing a bug, there should be an issue describing it with steps
    to reproduce. -->
    <!-- OSS: Please link to the issue here. Tyk: please create/link the
    JIRA ticket. -->
    
    <!-- Why is this change required? What problem does it solve? -->
    
    <!-- Please describe in detail how you tested your changes --> <!--
    Include details of your testing environment, and the tests --> <!-- you
    ran to see how your change affects other areas of the code, etc. -->
    <!-- This information is helpful for reviewers and QA. -->
    
    <!-- What types of changes does your code introduce? Put an `x` in all
    the boxes that apply: -->
    
    - [ ] Bug fix (non-breaking change which fixes an issue)
    - [ ] New feature (non-breaking change which adds functionality)
    - [ ] Breaking change (fix or feature that would cause existing
    functionality to change)
    - [ ] Refactoring or add test (improvements in base code or adds test
    coverage to functionality)
    
    <!-- Go over all the following points, and put an `x` in all the boxes
    that apply -->
    <!-- If there are no documentation updates required, mark the item as
    checked. -->
    <!-- Raise up any additional concerns not covered by the checklist. -->
    
    - [ ] I ensured that the documentation is up to date
    - [ ] I explained why this PR updates go.mod in detail with reasoning
    why it's required
    - [ ] I would like a code coverage CI quality gate exception and have
    explained why
    
    ___
    
    enhancement
    
    ___
    
    - Removed Python installation steps from `ci/Dockerfile.std`, reducing
    CVE surface and aligning with the goal to remove Python from Tyk docker
    images.
    - Updated generation timestamps across multiple scripts and
    configuration files, ensuring they reflect the latest generation date.
    - Simplified artifact naming in `.github/workflows/release.yml` and
    removed the override option for cleaner and more straightforward CI/CD
    pipeline management.
    
    ___
    
    <table><thead><tr><th></th><th align="left">Relevant
    files</th></tr></thead><tbody><tr><td><strong>Configuration
    changes</strong></td><td><details><summary>8 files</summary><table> <tr>
      <td>
        <details>
    <summary><strong>pc.sh</strong><dd><code>Update Generation Timestamp in
    pc.sh</code>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
    &nbsp; &nbsp; &nbsp; </dd></summary>
    <hr>
    
    ci/bin/pc.sh
    - Updated generation timestamp.
    
    </details>
    
      </td> <td><a
    
    href="https://github.com/TykTechnologies/tyk/pull/6138/files#diff-1ab5821f23841af3afa7d4b35ebe5bbf5f16f73d24efc0bc7ee1c9f7d139c343">+1/-1</a>&nbsp;
    &nbsp; &nbsp; </td>
    </tr>
    
    <tr>
      <td>
        <details>
    <summary><strong>unlock-agent.sh</strong><dd><code>Update Generation
    Timestamp in unlock-agent.sh</code>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; </dd></summary> <hr>
    
    ci/bin/unlock-agent.sh
    - Updated generation timestamp.
    
    </details>
    
      </td> <td><a
    
    href="https://github.com/TykTechnologies/tyk/pull/6138/files#diff-dbe46dfd0ff7046494da4cb3ccfc6e7bba7c029f7ef9f0588d8926c585fcbd61">+1/-1</a>&nbsp;
    &nbsp; &nbsp; </td>
    </tr>
    
    <tr>
      <td>
        <details>
    <summary><strong>before_install.sh</strong><dd><code>Update Generation
    Timestamp in before_install.sh</code>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
    &nbsp; &nbsp; &nbsp; &nbsp; </dd></summary>
    <hr>
    
    ci/install/before_install.sh
    - Updated generation timestamp.
    
    </details>
    
      </td> <td><a
    
    href="https://github.com/TykTechnologies/tyk/pull/6138/files#diff-bd20b1ec658c22d4ecad9f2f07adf22d0076938f31d6cc09bc35c5ed0dc03807">+1/-1</a>&nbsp;
    &nbsp; &nbsp; </td>
    </tr>
    
    <tr>
      <td>
        <details>
    <summary><strong>post_install.sh</strong><dd><code>Update Generation
    Timestamp in post_install.sh</code>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; </dd></summary> <hr>
    
    ci/install/post_install.sh
    - Updated generation timestamp.
    
    </details>
    
      </td> <td><a
    
    href="https://github.com/TykTechnologies/tyk/pull/6138/files#diff-16f232a53df862d740ca45c0a608e598b38a7211da8325b9f74ceaecc00280c5">+1/-1</a>&nbsp;
    &nbsp; &nbsp; </td>
    </tr>
    
    <tr>
      <td>
        <details>
    <summary><strong>post_remove.sh</strong><dd><code>Update Generation
    Timestamp in post_remove.sh</code>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; </dd></summary> <hr>
    
    ci/install/post_remove.sh
    - Updated generation timestamp.
    
    </details>
    
      </td> <td><a
    
    href="https://github.com/TykTechnologies/tyk/pull/6138/files#diff-416f68b7ae081148bca909eab3eea39f9a41dd1f99271208954805c50de6d522">+1/-1</a>&nbsp;
    &nbsp; &nbsp; </td>
    </tr>
    
    <tr>
      <td>
        <details>
    <summary><strong>post_trans.sh</strong><dd><code>Update Generation
    Timestamp in post_trans.sh</code>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; </dd></summary>
    <hr>
    
    ci/install/post_trans.sh
    - Updated generation timestamp.
    
    </details>
    
      </td> <td><a
    
    href="https://github.com/TykTechnologies/tyk/pull/6138/files#diff-08b47bd93f3e0b3bcc919878bd798d4785a57d386fa05b46ca2a9b586e432c2e">+1/-1</a>&nbsp;
    &nbsp; &nbsp; </td>
    </tr>
    
    <tr>
      <td>
        <details>
    <summary><strong>release.yml</strong><dd><code>Update and Simplify
    Workflow Artifact Naming</code>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; </dd></summary> <hr>
    
    .github/workflows/release.yml
    <li>Updated generation timestamp.<br> <li> Simplified artifact naming
    and removed override option.<br>
    
    </details>
    
      </td>
    <td><a
    
    href="https://github.com/TykTechnologies/tyk/pull/6138/files#diff-87db21a973eed4fef5f32b267aa60fcee5cbdf03c67fafdc2a9b553bb0b15f34">+3/-5</a>&nbsp;
    &nbsp; &nbsp; </td>
    </tr>
    
    <tr>
      <td>
        <details>
    <summary><strong>goreleaser.yml</strong><dd><code>Update Generation
    Timestamp in goreleaser.yml</code>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; </dd></summary> <hr>
    
    ci/goreleaser/goreleaser.yml
    - Updated generation timestamp.
    
    </details>
    
      </td> <td><a
    
    href="https://github.com/TykTechnologies/tyk/pull/6138/files#diff-fb944a05459e4d713bc7541efd6e721cbe992a556353c09c4eb66a8eae9b856e">+1/-1</a>&nbsp;
    &nbsp; &nbsp; </td>
    </tr>
    
    
    </table></details></td></tr><tr><td><strong>Enhancement</strong></td><td><details><summary>1
    files</summary><table>
    <tr>
      <td>
        <details>
    <summary><strong>Dockerfile.std</strong><dd><code>Remove Python
    Installation from Dockerfile</code>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
    </dd></summary>
    <hr>
    
    ci/Dockerfile.std
    <li>Updated generation timestamp.<br> <li> Removed Python installation
    steps.<br> <li> Removed unnecessary file deletions.<br>
    
    </details>
    
      </td>
    <td><a
    
    href="https://github.com/TykTechnologies/tyk/pull/6138/files#diff-a3b3e9cabd877d0bd0fc8f20a9fdca7f44d102547a5fdfcd398ea01637e5dfae">+1/-4</a>&nbsp;
    &nbsp; &nbsp; </td>
    </tr>
    </table></details></td></tr></tr></tbody></table>
    
    ___
    
    > ✨ **PR-Agent usage**:
    >Comment `/help` on the PR to get a list of all available PR-Agent tools
    and their descriptions
    
    <!-- Provide a general summary of your changes in the Title above -->
    
    ## Description
    
    <!-- Describe your changes in detail -->
    
    ## Related Issue
    
    <!-- This project only accepts pull requests related to open issues. -->
    <!-- If suggesting a new feature or change, please discuss it in an
    issue first. -->
    <!-- If fixing a bug, there should be an issue describing it with steps
    to reproduce. -->
    <!-- OSS: Please link to the issue here. Tyk: please create/link the
    JIRA ticket. -->
    
    ## Motivation and Context
    
    <!-- Why is this change required? What problem does it solve? -->
    
    ## How This Has Been Tested
    
    <!-- Please describe in detail how you tested your changes -->
    <!-- Include details of your testing environment, and the tests -->
    <!-- you ran to see how your change affects other areas of the code,
    etc. -->
    <!-- This information is helpful for reviewers and QA. -->
    
    ## Screenshots (if appropriate)
    
    ## Types of changes
    
    <!-- What types of changes does your code introduce? Put an `x` in all
    the boxes that apply: -->
    
    - [ ] Bug fix (non-breaking change which fixes an issue)
    - [ ] New feature (non-breaking change which adds functionality)
    - [ ] Breaking change (fix or feature that would cause existing
    functionality to change)
    - [ ] Refactoring or add test (improvements in base code or adds test
    coverage to functionality)
    
    ## Checklist
    
    <!-- Go over all the following points, and put an `x` in all the boxes
    that apply -->
    <!-- If there are no documentation updates required, mark the item as
    checked. -->
    <!-- Raise up any additional concerns not covered by the checklist. -->
    
    - [ ] I ensured that the documentation is up to date
    - [ ] I explained why this PR updates go.mod in detail with reasoning
    why it's required
    - [ ] I would like a code coverage CI quality gate exception and have
    explained why
    
    Co-authored-by: Gromit <policy@gromit>
    Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

    Projects

    None yet

    Development

    Successfully merging this pull request may close these issues.

    2 participants