Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
a7073db
add rds db-instance read replica, draft#1
teeverr May 15, 2025
63e323b
add rds db-instance read replica, draft#2
teeverr May 22, 2025
b287e75
added unit test and c7n to be ignored
taailri1 Jun 5, 2025
55335a0
Changed API
taailri1 Jun 9, 2025
4290e1f
changes base on the commetns and deletion of the test file
taailri1 Jul 2, 2025
e609e30
removed pretend from description
taailri1 Jul 4, 2025
413f582
Revert "added unit test and c7n to be ignored"
teeverr Jun 26, 2025
0250a4a
add rds db-instance read replica, draft #3
teeverr Jun 30, 2025
6bf784b
add rds db-instance read replica, draft #4
teeverr Jul 1, 2025
bd660c2
add rds db-instance read replica, draft #5
teeverr Jul 2, 2025
598f092
add rds db-instance read replica, draft #6
teeverr Jul 3, 2025
09a55bd
added test for tag prefix ignore
taailri1 Jul 7, 2025
42f9fb1
changed test name
taailri1 Jul 7, 2025
7a70151
feat(transfer): add homedirectorymapping uptodate check
kkendzia May 15, 2025
ea58a92
fix(secretsmanager): fix isUpToDate for tags only
anagarlau May 22, 2025
cd78288
add reconciling of s3 bucket object lock config
teeverr Apr 1, 2025
22bd3cd
fix(ecs): service connect diff & nil pointer fix
May 23, 2025
faf3eb4
docs(owners): closes #2176
christophrj May 23, 2025
cae1b01
fix(rds): Only ignore weekday when comparing maintenanceWindow
siddharth0801 May 22, 2025
be0b13b
docs(owners): add newest owners
anagarlau Jun 6, 2025
ab50138
feat(elbv2): Add ListenerRule resource
May 9, 2025
66262c0
fix(rds): add port to status and connection details from either spec …
anagarlau Jun 16, 2025
c9c27a8
fix(ecs):issue with empty network configuration parameter
saiharsha-plivo Jun 17, 2025
d9b45f7
add rds db-instance read replica
teeverr May 15, 2025
8224f10
add rds db-instance read replica, draft#1
teeverr May 15, 2025
1f3797d
add rds db-instance read replica, draft#2
teeverr May 22, 2025
fe2487a
add rds db-instance read replica, draft #3
teeverr Jun 30, 2025
20d8579
add rds db-instance read replica, draft #4
teeverr Jul 1, 2025
4b22939
add rds db-instance read replica, draft #5
teeverr Jul 2, 2025
157b3aa
adding removed tag ignore back
taailri1 Jul 25, 2025
c19c9bf
added test for tag prefix ignore
taailri1 Jul 7, 2025
a615e25
changed test name
taailri1 Jul 7, 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
19 changes: 10 additions & 9 deletions .golangci.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
run:
timeout: 30m

skip-files:
exclude-files:
- "zz_generated\\..+\\.go$"

output:
Expand All @@ -21,11 +21,14 @@ linters-settings:
# [deprecated] comma-separated list of pairs of the form pkg:regex
# the regex is used to ignore names within pkg. (default "fmt:.*").
# see https://github.com/kisielk/errcheck#the-deprecated-method for details
ignore: fmt:.*,io/ioutil:^Read.*
#ignore: fmt:.*,io/ioutil:^Read.*
exclude-functions:
- fmt.*
- io/ioutil:^Read.*

govet:
# report about shadowed variables
check-shadowing: false
shadow: false

gofmt:
# simplify code: gofmt with `-s` option, true by default
Expand Down Expand Up @@ -112,7 +115,6 @@ linters-settings:

linters:
enable:
- megacheck
- govet
- gocyclo
- gocritic
Expand All @@ -125,15 +127,14 @@ linters:
- misspell
- nakedret
- nolintlint
- gosimple
- staticcheck
- unused

disable:
# These linters are all deprecated as of golangci-lint v1.49.0. We disable
# them explicitly to avoid the linter logging deprecation warnings.
- deadcode
- varcheck
- scopelint
- structcheck
- interfacer
- megacheck

presets:
- bugs
Expand Down
5 changes: 3 additions & 2 deletions OWNERS.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,10 @@ guidelines and responsibilities for the steering committee and maintainers.

## Maintainers

* Daniel Mangum <georgedanielmangum@gmail.com> ([hasheddan](https://github.com/hasheddan))
* Krish Chowdhary <kchowdha@redhat.com> ([krishchow](https://github.com/krishchow))
* Carl Henrik Lunde <chlunde@gmail.com> ([chlunde](https://github.com/chlunde))
* Maximilian Blatt ([MisterMX](https://github.com/MisterMX))
* Ana Garlau ([anagarlau](https://github.com/anagarlau))
* Christopher Junk ([christophrj](https://github.com/christophrj))
* Nico Andres ([AndresNico](https://github.com/AndresNico))
* Kevin Kendzia ([kkendzia](https://github.com/kkendzia))
* Gosha Khromov ([ggkhrmv](https://github.com/ggkhrmv))
9 changes: 7 additions & 2 deletions apis/elbv2/generator-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ ignore:
# Type has a json key of type_, so it's reimplemented with loadBalancerType
- CreateLoadBalancerInput.Type
- DescribeListenersInput.LoadBalancerArn
resource_names:
- Rule
- CreateRuleInput.ListenerArn
- CreateRuleInput.Priority
resources:
Listener:
exceptions:
Expand All @@ -26,6 +26,11 @@ resources:
errors:
404:
code: TargetGroupNotFound
Rule:
exceptions:
errors:
404:
code: RuleNotFound
# Since the Create* actions all return a list and we can't use the same return
# type for Create and Generate* functions, use a noop statement here. This is a
# bit hacky, but can't be helped without some way to configure this more
Expand Down
20 changes: 20 additions & 0 deletions apis/elbv2/v1alpha1/custom_types.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,26 @@ package v1alpha1

import xpv1 "github.com/crossplane/crossplane-runtime/apis/common/v1"

type CustomRuleParameters struct {
// The Amazon Resource Name (ARN) of the listener.
// +optional
ListenerARN *string `json:"listenerARN,omitempty"`

// Reference to Listener for Listener ARN
// +optional
ListenerARNRef *xpv1.Reference `json:"listenerARNRef,omitempty"`

// Selector for references to Listener for Listener ARN
// +optional
ListenerARNSelector *xpv1.Selector `json:"listenerARNSelector,omitempty"`

// The priority for the rule , must be unique for each rule in the listener
// +kubebuilder:validation:Required
Priority *int64 `json:"priority"`
}

type CustomRuleObservation struct{}

// CustomCertificate includes custom fields about certificates.
type CustomCertificate struct {
// [HTTPS and TLS listeners] The default certificate for the listener.
Expand Down
Loading
Loading