Skip to content

Commit

Permalink
Merge branch 'main' into stormforge-2.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
vishwanaths authored Jan 10, 2024
2 parents b13d358 + e870224 commit e3810e0
Show file tree
Hide file tree
Showing 1,141 changed files with 112,006 additions and 6 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/bulwark-gitleaks-pr-validation.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,16 +12,28 @@ jobs:
image: gcr.io/spectro-dev-public/bulwark/gitleaks:latest
env:
REPO: ${{ github.event.repository.name }}
BRANCH: ${{ github.head_ref || github.ref_name }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GITLEAKS_CONFIG: config.toml
steps:

- name: run-bulwark-gitleaks-scan
if: github.event.pull_request.head.repo.full_name == github.repository
shell: sh
env:
BRANCH: ${{ github.head_ref || github.ref_name }}
run: /workspace/bulwark -name CodeSASTGitLeaks -target $REPO -tags "branch:$BRANCH,options:--log-opts origin..HEAD"

- name: run-bulwark-gitleaks-scan-from-fork
if: github.event.pull_request.head.repo.full_name != github.repository
shell: sh
run: |
git clone https://github.com/${{ github.event.pull_request.head.repo.full_name }}.git -b ${BRANCH}
cd ${REPO}
git remote add scRepo https://github.com/${{ github.repository }}.git
git fetch scRepo
/workspace/bulwark -name CodeSASTGitLeaks -target pwd -tags "branch:$BRANCH,options:--log-opts HEAD..scRepo/${{ github.base_ref }}"
- name: check-result
shell: sh
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pack-validation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@

- name: Get changed files
id: changed-files
uses: tj-actions/changed-files@v35
uses: tj-actions/changed-files@v41

# # Run Validations
- name: Check Packs
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ By contributing to this repository, you acknowledge that you have read and agree

## Pull Request guidelines
* Be sure to test your functionality by uploading the pack to your own pack registry before raising the pull request.
* Please give a brief account of the pack functionality. You can add usage instructions and document the nuances for using the pack as part of the README.md file within the pack.
* Use the [README template](templates/README-template.md) to create a README.md file for your pack that includes a brief overview of the pack functionality, prerequisites, and usage instructions. Each pack version should have its own README.md file. An [example README.md](templates/README-example.md) is also available to provide you with a better understanding of the structure and content you need to include.
* Mention the list of container images being used by your pack as part images section in values.yaml file of the pack. This will help us in identifying the images to run security scans.
* Typically you should get a response within 72 hours of raising your pull request. Make sure you watchout for any review comments and handle them.
* Once your PR is merged, it will be deployed to the Spectro Cloud public pack registry.
Expand Down
20 changes: 20 additions & 0 deletions packs/appdynamics-collector-1.13.684/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
## The Appdynamics Collector Cloud Helm Charts
An Add-on pack for Spectro Cloud to use the monioring of k8s cluster with AppDynamics collectors.

## Appdynamics Cloud Helm Charts
This repository maintains helm charts for installing Appdynamics Cloud Collector.

## Parameters
| Parameter | Description |
|-----------|-------------|
| clusterName | String to specify the name of the k8s cluster |
| endpoint | The endpoint Tenant to which you want to send the data to. Please refer the product guide link from References for more details |
| clientId | clientId of your Tenant . Please refer the product guide link from References for more details |
| clientSecret | clientSecret of your Tenant. Please refer the product guide link from References for more details |
| tokenUrl | tokenUrl of your Tenant. Please refer the product guide link from References for more details |
| tenantId | tenantId of your Tenant. Please refer the product guide link from References for more details |


## References
Here is the complete product guide about the AppDynamics collectors.
https://docs.appdynamics.com/fso/cloud-native-app-obs/en/kubernetes-and-app-service-monitoring/install-kubernetes-and-app-service-monitoring
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# Patterns to ignore when building packages.
# This supports shell glob matching, relative path matching, and
# negation (prefixed with !). Only one pattern per line.
.DS_Store
# Common VCS dirs
.git/
.gitignore
.bzr/
.bzrignore
.hg/
.hgignore
.svn/
# Common backup files
*.swp
*.bak
*.tmp
*.orig
*~
# Various IDEs
.project
.idea/
*.tmproj
.vscode/

LICENSES/
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
apiVersion: v2
appVersion: 1.13.684
dependencies:
- name: appdynamics-cloud-k8s-monitoring
repository: ""
version: 1.13.0
- name: appdynamics-cloud-db-collector
repository: ""
version: 1.4.0
- condition: appdynamics-otel-collector.enabled
name: appdynamics-otel-collector
repository: https://artifactory.bare.appdynamics.com/artifactory/appd-helm
version: 23.8.0-1073
- condition: appdynamics-security-collector.enabled
name: appdynamics-security-collector
repository: https://artifactory.bare.appdynamics.com/artifactory/appd-helm
version: 1.0.15
- condition: appdynamics-otel-instrumentation.enabled
name: appdynamics-otel-instrumentation
repository: https://artifactory.bare.appdynamics.com/artifactory/appd-helm
version: 23.8.0-1092
description: Helm Charts for installing Appdynamics Collectors
home: https://appdynamics.com
icon: https://raw.githubusercontent.com/CiscoDevNet/appdynamics-charts/master/logo.png
keywords:
- appdynamics
- cloud
- collector
- cluster
- kubernetes
- monitoring
- pod
- deployment
maintainers:
- email: support@appdynamics.com
name: AppDynamics
name: appdynamics-collectors
type: application
version: 1.13.684
Loading

0 comments on commit e3810e0

Please sign in to comment.