Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
drupalSite-operator
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
drupal
paas
drupalSite-operator
Merge requests
!181
Remove drupalprojectconfig
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Remove drupalprojectconfig
remove-drupalprojectconfig
into
master
Overview
7
Commits
2
Pipelines
7
Changes
19
1 unresolved thread
Hide all comments
Merged
Dimitra Chatzichrysou
requested to merge
remove-drupalprojectconfig
into
master
3 years ago
Overview
7
Commits
2
Pipelines
7
Changes
19
1 unresolved thread
Hide all comments
Expand
Refers to
https://gitlab.cern.ch/webservices/webframeworks-planning/-/issues/956
Edited
3 years ago
by
Dimitra Chatzichrysou
0
0
Merge request reports
Compare
master
version 6
6da09dab
2 years ago
version 5
ced3f677
3 years ago
version 4
21f633cc
3 years ago
version 3
21f633cc
3 years ago
version 2
00524fa9
3 years ago
version 1
7980550f
3 years ago
master (base)
and
latest version
latest version
ee24d9e0
2 commits,
2 years ago
version 6
6da09dab
2 commits,
2 years ago
version 5
ced3f677
2 commits,
3 years ago
version 4
21f633cc
2 commits,
3 years ago
version 3
21f633cc
16 commits,
3 years ago
version 2
00524fa9
15 commits,
3 years ago
version 1
7980550f
14 commits,
3 years ago
19 files
+
8
−
471
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
19
Search (e.g. *.vue) (Ctrl+P)
api/v1alpha1/drupalprojectconfig_types.go deleted
100644 → 0
+
0
−
57
Options
/*
Copyright 2021 CERN.
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
v1alpha1
import
(
metav1
"k8s.io/apimachinery/pkg/apis/meta/v1"
)
// DrupalProjectConfigSpec defines the desired state of DrupalProjectConfig
type
DrupalProjectConfigSpec
struct
{
// PrimarySiteName defines the primary DrupalSite instance of a project
// +optional
PrimarySiteName
string
`json:"primarySiteName,omitempty"`
}
// DrupalProjectConfigStatus defines the observed state of DrupalProjectConfig
type
DrupalProjectConfigStatus
struct
{
}
//+kubebuilder:object:root=true
//+kubebuilder:subresource:status
// DrupalProjectConfig is the Schema for the drupalprojectconfigs API
type
DrupalProjectConfig
struct
{
metav1
.
TypeMeta
`json:",inline"`
metav1
.
ObjectMeta
`json:"metadata,omitempty"`
Spec
DrupalProjectConfigSpec
`json:"spec,omitempty"`
Status
DrupalProjectConfigStatus
`json:"status,omitempty"`
}
//+kubebuilder:object:root=true
// DrupalProjectConfigList contains a list of DrupalProjectConfig
type
DrupalProjectConfigList
struct
{
metav1
.
TypeMeta
`json:",inline"`
metav1
.
ListMeta
`json:"metadata,omitempty"`
Items
[]
DrupalProjectConfig
`json:"items"`
}
func
init
()
{
SchemeBuilder
.
Register
(
&
DrupalProjectConfig
{},
&
DrupalProjectConfigList
{})
}
Loading