1
0
Fork 0
mirror of https://github.com/arangodb/kube-arangodb.git synced 2024-12-14 11:57:37 +00:00

Refactoring: move some ml/shared functions to community (#1562)

This commit is contained in:
Nikita Vaniasin 2024-01-09 10:03:29 +01:00 committed by GitHub
parent bb94548fb1
commit a5866a52ea
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 135 additions and 0 deletions

View file

@ -0,0 +1,84 @@
//
// DISCLAIMER
//
// Copyright 2024 ArangoDB GmbH, Cologne, Germany
//
// 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.
//
// Copyright holder is ArangoDB GmbH, Cologne, Germany
//
package ml
import (
"fmt"
"strings"
core "k8s.io/api/core/v1"
api "github.com/arangodb/kube-arangodb/pkg/apis/deployment/v1"
mlApi "github.com/arangodb/kube-arangodb/pkg/apis/ml/v1alpha1"
sharedApi "github.com/arangodb/kube-arangodb/pkg/apis/shared/v1"
)
func GetJWTAuthFileTokenPath(prefix string) string {
base := "/etc/arangodb/jwt"
if prefix == "" {
return base
}
return fmt.Sprintf("%s-%s", base, prefix)
}
func AddJWTAuthFileToContainers(ext *mlApi.ArangoMLExtension, deployment *api.ArangoDeployment, spec *core.PodTemplateSpec, containers ...*core.Container) {
authSpec := deployment.GetAcceptedSpec().Authentication
if !authSpec.IsAuthenticated() {
return
}
if ext.GetStatus().ArangoDB == nil {
// not ready yet, skip for now
return
}
mountJWTTokenSecret("", ext.GetStatus().ArangoDB.JWTTokenSecret, spec, containers...)
mountJWTTokenSecret("METADATA", ext.GetStatus().MetadataService.JWTTokenSecret, spec, containers...)
}
// mountJWTTokenSecret is assuming that prefix contains only alphanumeric symbols and/or '-'
func mountJWTTokenSecret(prefix string, secret *sharedApi.Object, spec *core.PodTemplateSpec, containers ...*core.Container) {
if secret.IsEmpty() {
return
}
mountName := "deployment-auth-jwt"
if prefix != "" {
mountName = fmt.Sprintf("%s-%s", mountName, strings.ToLower(prefix))
}
spec.Spec.Volumes = append(spec.Spec.Volumes, core.Volume{
Name: mountName,
VolumeSource: core.VolumeSource{
Secret: &core.SecretVolumeSource{
SecretName: secret.GetName(),
},
},
})
for _, container := range containers {
container.VolumeMounts = append(container.VolumeMounts, core.VolumeMount{
Name: mountName,
ReadOnly: true,
MountPath: GetJWTAuthFileTokenPath(prefix),
})
}
}

51
pkg/ml/container_ca.go Normal file
View file

@ -0,0 +1,51 @@
//
// DISCLAIMER
//
// Copyright 2024 ArangoDB GmbH, Cologne, Germany
//
// 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.
//
// Copyright holder is ArangoDB GmbH, Cologne, Germany
//
package ml
import (
core "k8s.io/api/core/v1"
api "github.com/arangodb/kube-arangodb/pkg/apis/deployment/v1"
"github.com/arangodb/kube-arangodb/pkg/deployment/resources"
)
func AddTLSToContainers(deployment *api.ArangoDeployment, spec *core.PodTemplateSpec, containers ...*core.Container) {
if !deployment.GetAcceptedSpec().TLS.IsSecure() {
return
}
spec.Spec.Volumes = append(spec.Spec.Volumes, core.Volume{
Name: "deployment-ca",
VolumeSource: core.VolumeSource{
Secret: &core.SecretVolumeSource{
SecretName: resources.GetCASecretName(deployment),
},
},
})
for _, container := range containers {
container.VolumeMounts = append(container.VolumeMounts, core.VolumeMount{
Name: "deployment-ca",
ReadOnly: true,
MountPath: "/etc/arangodb/tls",
})
}
}