Skip to content
New issue

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

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

Already on GitHub? Sign in to your account

Change references from Niklas's account to helsing-ai #53

Merged
merged 1 commit into from
Dec 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
8 changes: 4 additions & 4 deletions .github/workflows/docker.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ jobs:
push: true
file: argocd-cmp/Dockerfile
tags: |
ghcr.io/niklasrosenstein/nyl/argocd-cmp:${{ github.sha }}
${{ github.ref_type == 'tag' && format('ghcr.io/niklasrosenstein/nyl/argocd-cmp:{0}', github.ref_name) || '' }}
cache-to: type=registry,ref=ghcr.io/niklasrosenstein/nyl/argocd-cmp:cache,mode=max
cache-from: type=registry,ref=ghcr.io/niklasrosenstein/nyl/argocd-cmp:cache
ghcr.io/helsing-ai/nyl/argocd-cmp:${{ github.sha }}
${{ github.ref_type == 'tag' && format('ghcr.io/helsing-ai/nyl/argocd-cmp:{0}', github.ref_name) || '' }}
cache-to: type=registry,ref=ghcr.io/helsing-ai/nyl/argocd-cmp:cache,mode=max
cache-from: type=registry,ref=ghcr.io/helsing-ai/nyl/argocd-cmp:cache
platforms: linux/amd64,linux/arm64
4 changes: 2 additions & 2 deletions argocd-with-nyl/argocd.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ spec:
repoServer:
extraContainers:
- name: nyl-v1
image: ghcr.io/niklasrosenstein/nyl/argocd-cmp:0.0.7
image: ghcr.io/helsing-ai/nyl/argocd-cmp:0.0.7
securityContext:
runAsNonRoot: true
runAsUser: 999
Expand Down Expand Up @@ -76,7 +76,7 @@ metadata:
spec:
project: default
source:
repoURL: https://github.com/NiklasRosenstein/nyl.git
repoURL: https://github.com/helsing-ai/nyl.git
targetRevision: HEAD
path: argocd-with-nyl
destination:
Expand Down
2 changes: 1 addition & 1 deletion docs/content/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## 0.6.0

* Upgraded `argocd-cmp-server` in `nyl/argocd-cmp` container image to `v2.13.1` (see [#46](https://github.com/NiklasRosenstein/nyl/pull/46))
* Upgraded `argocd-cmp-server` in `nyl/argocd-cmp` container image to `v2.13.1` (see [#46](https://github.com/helsing-ai/nyl/pull/46))
* Re-introduce `settings.generate_placeholders` in `nyl-project.toml`, but warn if it is used. Enabling the option will have the
same effect as setting `on_lookup_failure = "CreatePlaceholder"` and take precedence over the original value of `on_lookup_failure`.

Expand Down
2 changes: 1 addition & 1 deletion docs/content/reference/applysets.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ resources in a cluster. Nyl provides basic support for ApplySets, allowing you t
and prune resources as they are removed from your configuration.

Note that ApplySet support is experimental and has still has various issues. You can following the progress of the
feature in the [nyl#5](https://github.com/NiklasRosenstein/nyl/issues/5).
feature in the [nyl#5](https://github.com/helsing-ai/nyl/issues/5).
2 changes: 1 addition & 1 deletion docs/content/reference/argocd-plugin.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ We recommend the following configuration:
repoServer:
extraContainers:
- name: nyl-v1
image: ghcr.io/niklasrosenstein/nyl/argocd-cmp:{{ NYL_VERSION }}
image: ghcr.io/helsing-ai/nyl/argocd-cmp:{{ NYL_VERSION }}
securityContext:
runAsNonRoot: true
runAsUser: 999
Expand Down
2 changes: 1 addition & 1 deletion src/nyl/commands/template.py
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,7 @@ def template(
applyset.set_group_kinds(source.manifests)
# HACK: Kubectl 1.30 can't create the custom resource, so we need to create it. But it will also reject
# using the custom resource unless it has the tooling label set appropriately. For more details, see
# https://github.com/NiklasRosenstein/nyl/issues/5.
# https://github.com/helsing-ai/nyl/issues/5.
applyset.tooling = f"kubectl/v{generator.kube_version}"
applyset.validate()

Expand Down
Loading