-
Notifications
You must be signed in to change notification settings - Fork 414
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
move auditoptions to separate struct
- Loading branch information
Showing
3 changed files
with
66 additions
and
23 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
/* | ||
Copyright 2017 The Kubernetes Authors. | ||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
*/ | ||
|
||
package options | ||
|
||
import ( | ||
"github.com/spf13/pflag" | ||
"gopkg.in/natefinch/lumberjack.v2" | ||
|
||
"k8s.io/apiserver/pkg/server" | ||
) | ||
|
||
type AuditLogOptions struct { | ||
Path string | ||
MaxAge int | ||
MaxBackups int | ||
MaxSize int | ||
} | ||
|
||
func NewAuditLogOptions() *AuditLogOptions { | ||
return &AuditLogOptions{} | ||
} | ||
|
||
func (o *AuditLogOptions) AddFlags(fs *pflag.FlagSet) { | ||
fs.StringVar(&o.Path, "audit-log-path", o.Path, | ||
"If set, all requests coming to the apiserver will be logged to this file.") | ||
fs.IntVar(&o.MaxAge, "audit-log-maxage", o.MaxBackups, | ||
"The maximum number of days to retain old audit log files based on the timestamp encoded in their filename.") | ||
fs.IntVar(&o.MaxBackups, "audit-log-maxbackup", o.MaxBackups, | ||
"The maximum number of old audit log files to retain.") | ||
fs.IntVar(&o.MaxSize, "audit-log-maxsize", o.MaxSize, | ||
"The maximum size in megabytes of the audit log file before it gets rotated. Defaults to 100MB.") | ||
} | ||
|
||
func (o *AuditLogOptions) ApplyTo(c *server.Config) error { | ||
if len(o.Path) == 0 { | ||
return nil | ||
} | ||
|
||
c.AuditWriter = &lumberjack.Logger{ | ||
Filename: o.Path, | ||
MaxAge: o.MaxAge, | ||
MaxBackups: o.MaxBackups, | ||
MaxSize: o.MaxSize, | ||
} | ||
return nil | ||
} |
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