-
Notifications
You must be signed in to change notification settings - Fork 90
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of github.com:codefresh-io/steps into CR-20802
- Loading branch information
Showing
13 changed files
with
412 additions
and
38 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,17 @@ | ||
query ApplicationsStatusesQuery( | ||
$runtime: String! | ||
$name: String! | ||
$namespace: String | ||
) { | ||
application(runtime: $runtime, name: $name, namespace: $namespace) { | ||
query appstatus ($name: String!) { | ||
applicationProxyQuery( | ||
name: $name | ||
){ | ||
metadata { | ||
runtime | ||
name | ||
namespace | ||
cluster | ||
__typename | ||
} | ||
healthStatus | ||
syncStatus | ||
syncPolicy | ||
status { | ||
health { | ||
status | ||
} | ||
sync { | ||
status | ||
} | ||
} | ||
} | ||
} |
18 changes: 18 additions & 0 deletions
18
incubating/argo-cd-sync/queries/get_app_status.orig.graphql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
query ApplicationsStatusesQuery( | ||
$runtime: String! | ||
$name: String! | ||
$namespace: String | ||
) { | ||
application(runtime: $runtime, name: $name, namespace: $namespace) { | ||
metadata { | ||
runtime | ||
name | ||
namespace | ||
cluster | ||
__typename | ||
} | ||
healthStatus | ||
syncStatus | ||
syncPolicy | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
FROM python:alpine | ||
|
||
# using same aws-cli that was used before moving to quay images to prevent regressions | ||
ARG CLI_VERSION=1.16.284 | ||
|
||
RUN apk -uv add --no-cache groff jq less && \ | ||
pip install --no-cache-dir awscli==$CLI_VERSION | ||
|
||
WORKDIR /aws |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# Changelog | ||
|
||
## [1.0.0] - 2024-01-22 | ||
|
||
Original version |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
FROM quay.io/kubescape/kubescape-cli:v3.0.1 | ||
|
||
# Kubescape uses root privileges for writing the results to a file | ||
USER root | ||
|
||
COPY entrypoint.sh /entrypoint.sh | ||
|
||
ENTRYPOINT ["/entrypoint.sh"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# kubescape CLI | ||
|
||
Docker image which invokes security script using kubescape CLI | ||
|
||
### Prerequisites: | ||
|
||
Codefresh Subscription (Dedicated Infrastructure/Hybrid) - https://codefresh.io/ | ||
|
||
### Documentation: | ||
|
||
kubescape CLI: https://github.com/kubescape/kubescape/blob/master/docs/getting-started.md |
Oops, something went wrong.