Skip to content

Commit

Permalink
update all except templates
Browse files Browse the repository at this point in the history
  • Loading branch information
ssyno committed Sep 26, 2024
1 parent 51ee536 commit 6220f86
Show file tree
Hide file tree
Showing 8 changed files with 188 additions and 24 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
version: 2.1
orbs:
architect: giantswarm/architect@5.2.1
architect: giantswarm/architect@5.5.0

workflows:
package-and-push-chart-on-tag:
Expand Down
22 changes: 21 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,23 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.10.2] - 2024-09-25

### Changed

- Fix issues with templates
- Change ownership to Team Shield

## [0.10.1] - 2024-09-04

- Added small fix on `podSecurityContext` for `seccompProfile`.

## [0.10.0] - 2024-08-21

### Changed

- Upgraded to Teleport `version 16`

## [0.9.2] - 2024-07-16

### Changed
Expand Down Expand Up @@ -79,7 +96,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added
- First release of teleport-kube-agent-app

[Unreleased]: https://github.com/giantswarm/teleport-kube-agent-app/compare/v0.9.2...HEAD
[Unreleased]: https://github.com/giantswarm/teleport-kube-agent-app/compare/v0.10.2...HEAD
[0.10.2]: https://github.com/giantswarm/teleport-kube-agent-app/compare/v0.10.1...v0.10.2
[0.10.1]: https://github.com/giantswarm/teleport-kube-agent-app/compare/v0.10.0...v0.10.1
[0.10.0]: https://github.com/giantswarm/teleport-kube-agent-app/compare/v0.9.2...v0.10.0
[0.9.2]: https://github.com/giantswarm/teleport-kube-agent-app/compare/v0.9.1...v0.9.2
[0.9.1]: https://github.com/giantswarm/teleport-kube-agent-app/compare/v0.9.0...v0.9.1
[0.9.0]: https://github.com/giantswarm/teleport-kube-agent-app/compare/v0.8.0...v0.9.0
Expand Down
2 changes: 1 addition & 1 deletion CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# generated by giantswarm/github actions - changes will be overwritten
* @giantswarm/team-bigmac
* @giantswarm/team-shield
8 changes: 4 additions & 4 deletions helm/teleport-kube-agent/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apiVersion: v2
name: teleport-kube-agent
appVersion: 15.1.9
version: [[ .Version ]]
appVersion: 16.1.7
description: Teleport provides a secure SSH, Kubernetes, database and application
remote access solution that doesn't get in the way.
icon: https://s.giantswarm.io/app-icons/teleport/1/light.png
Expand All @@ -11,7 +11,7 @@ sources:
keywords:
- Teleport
annotations:
application.giantswarm.io/team: bigmac
application.giantswarm.io/team: shield
maintainers:
- name: giantswarm/team-bigmac
email: team-bigmac@giantswarm.io
- name: giantswarm/team-shield
email: team-shield@giantswarm.io
40 changes: 39 additions & 1 deletion helm/teleport-kube-agent/values.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -595,6 +595,11 @@
"type": "object",
"default": {}
},
"job": {
"$id": "#/properties/extraLabels/properties/job",
"type": "object",
"default": {}
},
"pod": {
"$id": "#/properties/extraLabels/properties/pod",
"type": "object",
Expand Down Expand Up @@ -777,6 +782,39 @@
"additionalProperties": false
}
},
"jamfCredentialsSecret": {
"$id": "#/properties/jamfCredentialsSecret",
"type": "object",
"required": ["create", "name"],
"properties": {
"create": {
"$id": "#/properties/jamfCredentialsSecret/create",
"type": "boolean",
"default": false
},
"name": {
"$id": "#/properties/jamfCredentialsSecret/name",
"type": "string",
"default": "teleport-jamf-api-credentials"
},
"additionalProperties": false
}
},
"jamfApiEndpoint": {
"$id": "#/properties/jamfApiEndpoint",
"type": "string",
"default": ""
},
"jamfClientId": {
"$id": "#/properties/jamfClientId",
"type": "string",
"default": ""
},
"jamfClientSecret": {
"$id": "#/properties/jamfSecret",
"type": "string",
"default": ""
},
"proxy": {
"$id": "#/properties/proxy",
"type": "object",
Expand All @@ -790,7 +828,7 @@
"noProxy": {
"type": ["null", "string"]
}
}
}
},
"cluster": {
"$id": "#/properties/cluster",
Expand Down
Loading

0 comments on commit 6220f86

Please sign in to comment.