Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

GitOps Change Log with RSS Feed#1294

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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.

Already on GitHub?Sign in to your account

Merged
NimRegev merged 17 commits intomasterfromgitops-changelog
May 4, 2025
Merged
Show file tree
Hide file tree
Changes fromall commits
Commits
Show all changes
17 commits
Select commitHold shift + click to select a range
208de45
first test of new feed
ThatAmatoGuyApr 23, 2025
dbffaa8
Add what's new to argohub nav
NimRegevApr 24, 2025
2276c7d
Update changelog.md
NimRegevApr 24, 2025
73f2044
Filtered content based on collection
ThatAmatoGuyApr 24, 2025
4d53d22
updated URLs for posts
ThatAmatoGuyApr 24, 2025
b07556c
Update navbar page with what's new
NimRegevApr 27, 2025
030ebef
Update argohub-docs-navbar.html
NimRegevApr 27, 2025
292422b
Add symlink to changelog
NimRegevApr 27, 2025
78aa8e0
remove new changelog file
NimRegevApr 27, 2025
fb65e51
add link to RSS Feed for gitops
ThatAmatoGuyApr 28, 2025
ee2bcc9
updated layout and posts
ThatAmatoGuyApr 28, 2025
fd05e79
Update 2025-03-31-march-release-notes.md
NimRegevApr 29, 2025
40d8b92
Delete 2025-03-31-march-release-notes.md
NimRegevApr 30, 2025
5e6a687
Merge branch 'master' into gitops-changelog
NimRegevMay 4, 2025
b2b180d
Create 2025-04-30-april-release-notes.md
NimRegevMay 4, 2025
311f051
Update changelog.md
NimRegevMay 4, 2025
4ce1d83
Archive legacy release notes
NimRegevMay 4, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions_config.yml
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -78,6 +78,9 @@ collections:
posts:
output: true
permalink: /:collection/:year/:month/:day/:title/
posts-gitops:
output: true
permalink: /:collection/:year/:month/:day/:title/
pages:
output: true
permalink: /:collection/:path
Expand All@@ -98,6 +101,14 @@ defaults:
layout: docs
toc: true
wide: true
# _posts-gitops
- scope:
path: "_posts-gitops"
type: posts-gitops
values:
layout: gitops
toc: true
wide: true
# _pages
- scope:
path: "_pages"
Expand All@@ -124,6 +135,12 @@ defaults:
# #RSS Feed Location
feed:
path: /changelog/feed.xml
excerpt_only: false
collections:
posts-gitops:
path: /changelog/gitops.xml



# Custom variables
repo: "https://github.com/codefresh-io/docs.codefresh.io"
Expand Down
6 changes: 6 additions & 0 deletions_data/argohub-nav.yml
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -287,6 +287,12 @@
- title: Secrets for GitOps
url: "/secrets"

- title: What's new
url: "/whats-new"
pages:
- title: Release notes
url: "/changelog"

- title: Support tickets
url: "/support"
pages:
Expand Down
File renamed without changes.
File renamed without changes.
21 changes: 11 additions & 10 deletions_docs/whats-new/changelog.md
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -14,15 +14,16 @@ If you missed any of our previous online announcements, you can find the latest

To stay up-to-date with our on-premises enhancements and features, see our [dedicated on-premises release notes]({{site.baseurl}}/docs/whats-new/on-prem-release-notes/).


> To subscribe to an RSS / Atom feed for our SaaS release notes, please [click here]({{ site.baseurl }}/changelog/feed.xml).



<ul>
{% for post in site.posts %}
<li>
<a href="{{ site.baseurl }}{{ post.url }}">{{ post.title }}</a>
</li>
{% endfor %}
</ul>
{% assign posts_by_year = site.posts | group_by_exp: "post", "post.date | date: '%Y'" %}
{% for year in posts_by_year %}
<h2>{{ year.name }}</h2>
<ul>
{% for post in year.items %}
<li>
<a href="{{ site.baseurl }}{{ post.url }}">{{ post.title }}</a>
</li>
{% endfor %}
</ul>
{% endfor %}
22 changes: 22 additions & 0 deletions_gitops/whats-new/changelog.md
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
---
title: "Codefresh GitOps Cloud Release Notes"
description: "New features, enhancements, bug fixes for GitOps Cloud"
toc: true
---

This page gives you the complete list of release notes for our GitOps Cloud releases.
If you missed any of our previous online announcements, you can find the latest features, enhancements, and bug fixes, right here.

> To subscribe to an RSS / Atom feed for our SaaS release notes, please [click here]({{ site.baseurl }}/changelog/gitops.xml).

{% assign posts_by_year = site.posts-gitops | group_by_exp: "post", "post.date | date: '%Y'" %}
{% for year in posts_by_year %}
<h2>{{ year.name }}</h2>
<ul>
{% for post in year.items %}
<li>
<a href="{{ site.baseurl }}{{ post.url }}">{{ post.title }}</a>
</li>
{% endfor %}
</ul>
{% endfor %}
4 changes: 3 additions & 1 deletion_includes/argohub-docs-navbar.html
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -61,7 +61,9 @@
<li class="nav-item">
<a class="nav-link" href="https://gitops-graphql-docs.codefresh.io/introduction/welcome" onclick="ga('send', 'event', 'Navbar', 'Docs links', 'Open API Swagger');" target="_blank" rel="noopener">API</a>
</li>

<li class="nav-item">
<a class="nav-link" href="{{ site.baseurl }}/gitops/whats-new/changelog/" onclick="ga('send', 'event', 'Navbar', 'Docs links', 'Open Changelog');" >What's New</a>
</li>


</ul>
Expand Down
1 change: 1 addition & 0 deletions_posts-gitops/2025-04-30-april-release-notes.md
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
../_posts/2025-04-30-april-release-notes.md
90 changes: 50 additions & 40 deletions_posts/2025-03-31-march-release-notes.md
View file
Open in desktop
Original file line numberDiff line numberDiff line change
@@ -1,104 +1,114 @@
---
title: "Release Notes: March 2025"
description: "Release Notes for Codefresh Pipelines and GitOps"
description: ""
---
## Features & enhancements





### GitOps: Bring your own Argo CD

We’ve made it easy to connect existing Argo CD infrastructure with GitOps Cloud.
The agent lets you bring your own Argo CD instance, which works in plug-and-play mode. You install it in minutes, and if you change your mind you can also remove it without affecting your existing Argo CD instance.

{% include
image.html
lightbox="true"
file="/images/whats-new/mar25/runtime-install-wizard-existing-argo-cd.png"
url="/images/whats-new/mar25/runtime-install-wizard-existing-argo-cd.png"
alt="Installing GitOps Runtime connecting to existing Argo CD"
caption="Installing GitOps Runtime connecting to existing Argo CD"
max-width="60%"
The agent lets you bring your own Argo CD instance, which works in plug-and-play mode. You install it in minutes, and if you change your mind you can also remove it without affecting your existing Argo CD instance.

{% include
image.html
lightbox="true"
file="/images/whats-new/mar25/runtime-install-wizard-existing-argo-cd.png"
url="/images/whats-new/mar25/runtime-install-wizard-existing-argo-cd.png"
alt="Installing GitOps Runtime connecting to existing Argo CD"
caption="Installing GitOps Runtime connecting to existing Argo CD"
max-width="60%"
%}

If you don’t want to bring your own Argo CD instance, that’s no problem. You can still choose the GitOps Runtime to manage all Argo services in one bundle with our easy installation process.
If you don’t want to bring your own Argo CD instance, that’s no problem. You can still choose the GitOps Runtime to manage all Argo services in one bundle with our easy installation process.

For details, see [Installing Runtime with existing Argo CD]({{site.baseurl}}/docs/installation/gitops/runtime-install-with-existing-argo-cd/).

### GitOps: Simplified Runtime installation with the installation wizard

Our new installation wizard, designed for ease of use and maximum visibility into every step, makes installing a GitOps Runtime simple, intuitive, and quick.

{% include
image.html
lightbox="true"
file="/images/whats-new/mar25/runtime-install-wizard-new-argo-cd.png"
url="/images/whats-new/mar25/runtime-install-wizard-new-argo-cd.png"
alt="New Runtime installation wizard"
caption="New Runtime installation wizard"
max-width="60%"
{% include
image.html
lightbox="true"
file="/images/whats-new/mar25/runtime-install-wizard-new-argo-cd.png"
url="/images/whats-new/mar25/runtime-install-wizard-new-argo-cd.png"
alt="New Runtime installation wizard"
caption="New Runtime installation wizard"
max-width="60%"
%}

##### Key features

* **Installation and configuration** steps are clearly defined, so you can complete the entire setup from the same location.
* **Guided experience** that walks you through each step.
* **Inline parameter descriptions** so you always know what to define.
* **Automatic progress saving** so you can stop anytime and resume exactly where you left off.

##### Installation

Install a Runtime in three simple steps:

* Define a repository in your Git provider account to store shared configuration settings.
* Review and define installation parameters, which are automatically populated in the install command.
* Run the install command in your terminal.

##### Configuration
Configuration steps are clearly defined, making the set up process easy to complete.

Configuration steps are clearly defined, making the setup process easy to complete.

* **Define Git credentials**, with the option to use the same token for both the Runtime and user authentication. Required scopes are detailed to ensure the correct permissions.
* **Configure as an Argo CD Application** to take full advantage of GitOps.
* **Add a Git source** to the Runtime so you’re ready to create applications.



{% if page.collection == "posts" %}
### Pipelines: Easily add secret variables

We've introduced a simpler and more secure way to add secret variables in your pipelines, making it faster and safer to manage sensitive data. Before this update, adding a secret required creating a standard variable, temporarily exposing the value, and manually encrypting it, increasing the risk of accidental exposure.

With this update, you can define a secret variable upfront, so it's automatically encrypted from the start. Now, when clicking "Add", you can create a regular variable or secret variable directly in the UI.

{% include
image.html
lightbox="true"
file="/images/whats-new/mar25/variable-secret.png"
url="/images/whats-new/mar25/variable-secret.png"
alt="Adding secret variables"
caption="Adding secret variables"
max-width="60%"
{% include
image.html
lightbox="true"
file="/images/whats-new/mar25/variable-secret.png"
url="/images/whats-new/mar25/variable-secret.png"
alt="Adding secret variables"
caption="Adding secret variables"
max-width="60%"
%}

This update brings:

* One-step secret creation: No need to manually encrypt after adding a variable.
* Improved security: Secrets are encrypted automatically, reducing exposure risks.
* More intuitive workflow: Easily distinguish between regular and secret variables


For details, see [User-defined variables]({{site.baseurl}}/docs/pipelines/variables/#user-defined-variables).

### Pipelines: Prevent conflicts from overridden variables

We’ve introduced a smarter way to manage variables across shared configurations, projects, pipelines, and triggers.
Previously, it was easy to unintentionally override a project-level variable at the pipeline level—without realizing it. Now, you get a warning when creating a variable that already exists at a higher level, helping you make safer, more informed decisions.

* Smart conflict detection: See a warning when you try to define a variable that already exists at a higher scope.
* Safer collaboration: Reduce accidental overrides and keep pipelines in sync with shared variables.
* Better visibility: Understand when you're about to break the connection to a higher-level variable.
* Smart conflict detection: See a warning when you try to define a variable that already exists at a higher scope.
* Safer collaboration: Reduce accidental overrides and keep pipelines in sync with shared variables.
* Better visibility: Understand when you're about to break the connection to a higher-level variable.

For details, see [Order of precedence for user-defined variables]({{site.baseurl}}/docs/pipelines/variables/#order-of-precedence-for-user-defined-variables).

{% endif %}

## Bug fixes

##### Pipelines
{% if page.collection == "posts" %}

##### Pipelines

* Helm step does not use latest Helm version 3.14.

{% endif %}

##### GitOps
* Typo in parameter name in the `values.yaml` file of the `gitops-runtime chart`.

* Typo in parameter name in the `values.yaml` file of the `gitops-runtime chart`.

[8]ページ先頭

©2009-2025 Movatter.jp